-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUpIndex.html
111 lines (99 loc) · 5.72 KB
/
signUpIndex.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sign Up </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="well">Registor</h1>
<div class="col-lg-12 well ">
<div class="row">
<form>
<div class="col-sm-12">
<h2>Driver Details</h2>
<div class="row">
<div class="col-sm-6 form-group">
<label for="fname">First Name</label> <br>
<input type="text" id="fname" class="form-control">
</div>
<div class="col-sm-6 form-group">
<label for="lname">Last Name</label> <br>
<input type="text" id="lname" class="form-control">
</div>
</div>
<div class="form-group">
<label for="address">Address</label> <br>
<textarea type="text" rows="3" class="form-control" id="address" placeholder="Enter Your Address"></textarea>
</div>
<div class="row">
<div class="col-sm-12 col-lg-4 form-group">
<label for="city">City</label> <br>
<input type="text" id="city" placeholder="Enter City" class="form-control">
</div>
<div class="col-sm-12 col-lg-4 form-group">
<label for="state">State</label> <br>
<input type="text" id="state" placeholder="Enter City" class="form-control">
</div>
<div class="col-sm-12 col-lg-4 form-group">
<label for="zip">Zip</label> <br>
<input type="text" id="zip" placeholder="Enter City" class="form-control">
</div>
</div>
<div class="row">
<div class="col-lg-6 col-sm-12 form-group">
<label for="phone">Phone Number</label> <br>
<input type="text" id="phone" placeholder="Enter Your Phone Number" class="form-control">
</div>
<div class="col-lg-6 col-sm-12 form-group">
<label for="home">Home Number</label> <br>
<input type="text" id="home" placeholder="Enter Your Home Number" class="form-control">
</div>
</div>
<div class="form-group">
<label for="email">Email Address</label> <br>
<input type="text" id="email" placeholder="Enter Your Email" class="form-control">
</div>
<h2>Vehicle Details</h2>
<div class="row">
<div class="col-lg-6 col-sm-12 form-group">
<label for="make">Make</label> <br>
<input type="text" id="make" placeholder="Make" class="form-control">
</div>
<div class="col-lg-6 col-sm-12 form-group">
<label for="model">Model</label> <br>
<input type="text" id="model" placeholder="Model" class="form-control">
</div>
</div>
<div class="row">
<div class="col-lg-6 col-sm-12 form-group">
<label for="year">Year</label> <br>
<input type="text" id="year" placeholder="Year" class="form-control">
</div>
<div class="col-lg-6 col-sm-12 form-group">
<label for="rego">Registration Number</label> <br>
<input type="text" id="rego" placeholder="Registration Number" class="form-control">
</div>
</div>
<div class="row">
<div class="col-sm-12 form-group">
<label>Name 5 Places You Drive The Most?</label> <br>
<input type="text" placeholder="1." class="form-control">
<input type="text" placeholder="2." class="form-control">
<input type="text" placeholder="3." class="form-control">
<input type="text" placeholder="4." class="form-control">
<input type="text" placeholder="5." class="form-control">
</div>
</div>
<button class="btn btn-info btn-lg">Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>