-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (130 loc) · 7.62 KB
/
index.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Mera Aadhaar Admin</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<!-- Fonts and icons -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.css" rel="stylesheet">
<!-- CSS Files -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/css/gsdk-bootstrap-wizard.css" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="assets/css/demo.css" rel="stylesheet" />
</head>
<body>
<div class="image-container set-full-height" style="background-image: url('assets/img/wizard.jpg')">
<!-- Big container -->
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<!-- Wizard container -->
<div class="wizard-container">
<div class="card wizard-card" data-color="orange" id="wizardProfile">
<form action="" method="">
<!-- You can switch ' data-color="orange" ' with one of the next bright colors: "blue", "green", "orange", "red" -->
<div class="wizard-header">
<h3>
<b>BUILD</b> OPERATOR PROFILE <br>
<small>This information will add operator for Service</small>
</h3>
</div>
<div class="wizard-navigation">
<ul>
<li><a href="#about" data-toggle="tab">About</a></li>
<li><a href="#address" data-toggle="tab">Center</a></li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane" id="about">
<div class="row">
<div class="col-sm-4 col-sm-offset-1">
<div class="picture-container">
<div class="picture">
<img src="assets/img/default-avatar.png" class="picture-src" id="wizardPicturePreview" title=""/>
<input type="file" id="wizard-picture">
</div>
<h6>Choose Picture</h6>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label>Full Name <small>(required)</small></label>
<input name="name" type="text" class="form-control" placeholder="Surabhi Mishra">
</div>
<div class="form-group">
<label>Phone Number <small>(required)</small></label>
<input name="phone" type="text" class="form-control" placeholder="99999XXXXX">
</div>
</div>
<div class="col-sm-10 col-sm-offset-1">
<div class="form-group">
<label>Email <small>(required)</small></label>
<input name="email" type="email" class="form-control" placeholder="[email protected]">
</div>
</div><br><br>
<center>
<div class="row">
<label for="Age" class="col-md-2 control-label">Age:</label>
<div class="col-md-3">
<input type="text" id="age">
</div>
<label for="Gender" class="col-md-2 control-label">Gender:</label>
<div class="col-md-3">
<input type="text" id="gender">
</div>
</div>
</center>
</div>
</div>
<div class="tab-pane" id="address">
<div class="row">
<div class="col-sm-12">
<h4 class="info-text"> Center Location </h4>
</div>
<div class="col-sm-7 col-sm-offset-1">
<div class="form-group">
<label>Center UID</label>
<input type="text" class="form-control" placeholder="UID" id="centerUid">
</div>
</div><br>
<div class="col-sm-7 col-sm-offset-1">
<div class="form-group">
<label>Latitude-Longitude</label>
<input type="text" class="form-control" placeholder="242.5-562.7" id="latLon">
</div>
</div>
</div>
</div>
</div>
<div class="wizard-footer height-wizard">
<div class="pull-right">
<input type='button' class='btn btn-next btn-fill btn-warning btn-wd btn-sm' name='next' value='Next' />
<input type='button' class='btn btn-finish btn-fill btn-warning btn-wd btn-sm' name='finish' value='Finish' />
</div>
<div class="pull-left">
<input type='button' class='btn btn-previous btn-fill btn-default btn-wd btn-sm' name='previous' value='Previous' />
</div>
<div class="clearfix"></div>
</div>
</form>
</div>
</div> <!-- wizard container -->
</div>
</div><!-- end row -->
</div> <!-- big container -->
</div>
</body>
<!-- Core JS Files -->
<script src="assets/js/jquery-2.2.4.min.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/jquery.bootstrap.wizard.js" type="text/javascript"></script>
<!-- Plugin for the Wizard -->
<script src="assets/js/gsdk-bootstrap-wizard.js"></script>
<!-- More information about jquery.validate here: http://jqueryvalidation.org/ -->
<script src="assets/js/jquery.validate.min.js"></script>
</html>