-
Notifications
You must be signed in to change notification settings - Fork 1
/
M_Shopkeeper_Registration.html
75 lines (74 loc) · 2.68 KB
/
M_Shopkeeper_Registration.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="../MahabazarViewPages/css/M_Shopkeeper_Registration.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="well">Registration Form</h1>
<div class="col-lg-12 well">
<div class="row">
<form>
<div class="col-sm-12">
<div class="row">
<div class="col-sm-6 form-group">
<label>First Name</label>
<input type="text" placeholder="Enter First Name Here.." class="form-control">
</div>
<div class="col-sm-6 form-group">
<label>Last Name</label>
<input type="text" placeholder="Enter Last Name Here.." class="form-control">
</div>
</div>
<div class="form-group">
<label>Address</label>
<textarea placeholder="Enter Address Here.." rows="3" class="form-control"></textarea>
</div>
<div class="row">
<div class="col-sm-4 form-group">
<label>City</label>
<input type="text" placeholder="Enter City Name Here.." class="form-control">
</div>
<div class="col-sm-4 form-group">
<label>State</label>
<input type="text" placeholder="Enter State Name Here.." class="form-control">
</div>
<div class="col-sm-4 form-group">
<label>Zip</label>
<input type="text" placeholder="Enter Zip Code Here.." class="form-control">
</div>
</div>
<div class="row">
<div class="col-sm-6 form-group">
<label>Title</label>
<input type="text" placeholder="Enter Designation Here.." class="form-control">
</div>
<div class="col-sm-6 form-group">
<label>Company</label>
<input type="text" placeholder="Enter Company Name Here.." class="form-control">
</div>
</div>
<div class="form-group">
<label>Phone Number</label>
<input type="text" placeholder="Enter Phone Number Here.." class="form-control">
</div>
<div class="form-group">
<label>Email Address</label>
<input type="text" placeholder="Enter Email Address Here.." class="form-control">
</div>
<div class="form-group">
<label>Website</label>
<input type="text" placeholder="Enter Website Name Here.." class="form-control">
</div>
<button type="button" id ="buttonn" class="btn btn-lg btn-info">Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>