Update header.php
[clinton/MarylandElectronicPetitionSignature.git] / enter_information.php
CommitLineData
4f46b65a
PM
1<?PHP
2include_once('header.php');
09a581dc 3
4f46b65a
PM
4// if found send to is_the_information_correct.php
5
6// if not found send to warning_not_found.php
7
8// if missing data send to warning_incomplete.php
9
10?>
11
12<form method='POST'>
13
14 <div class='col-sm-12' style='height:100px; text-align:center;'><h3>Please enter your Name and ZIP Code as it appears on your Maryland Voter Registration</h3></div>
09a581dc 15
c364f2c3 16 <div class='col-sm-6' style='height:50px; text-align:center;'><h3>First Name</h3></div>
09a581dc 17
c364f2c3 18 <div class='col-sm-6' style='height:50px; text-align:center;'><h3>Last Name</h3></div>
09a581dc 19
c364f2c3 20 <div class='col-sm-6' style='height:50px; text-align:center;'><input> </div>
09a581dc 21
c364f2c3 22 <div class='col-sm-6' style='height:50px; text-align:center;'><input> </div>
09a581dc 23
c364f2c3 24 <div class='col-sm-6' style='height:50px; text-align:center;'><h3>House Number</h3></div>
09a581dc 25
c364f2c3 26 <div class='col-sm-6' style='height:50px; text-align:center;'><h3>ZIP Code</h3></div>
09a581dc 27
c364f2c3 28 <div class='col-sm-6' style='height:50px; text-align:center;'><input> </div>
09a581dc 29
c364f2c3 30 <div class='col-sm-6' style='height:50px; text-align:center;'><input> </div>
09a581dc 31
9e59a37d 32 <div class='col-sm-12' style='height:50px; text-align:center;'><button type="submit" class="btn btn-success">Next</button></div>
09a581dc 33
9e59a37d 34 <div class='col-sm-12' style='height:50px; text-align:center;'><button type="reset" class="btn btn-warning">Clear</button></div>
4f46b65a
PM
35</form>
36
09a581dc 37<?PHP include_once('footer.php');