-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
73 lines (51 loc) · 2.51 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SignUp</title>
<link rel="stylesheet" type="text/css" href="signupstyle.css">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<ul class="nav nav-tabs">
<li role="presentation" ><a href="#"><span class="glyphicon glyphicon-screenshot" aria-hidden="true"></a></li>
<li role="presentation" class="active"><a href="index.html">jSTRIKE</a></li>
<li role="presentation" class="active"><a href="#">+JOB</a></li>
</ul>
<div class="container">
<div class= "signup">
<h2>Sign Up</h2>
<form role="form">
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-user" aria-hidden="true"></span></span>
<input type="text" class="form-control" id="name" placeholder="Enter Name">
</div>
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></span>
<input type="email" class="form-control" id="email" placeholder="Enter email" >
</div>
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span></span>
<!--<span class="input-group-addon">Password</span>-->
<input type="password" class="form-control" id="pwd" placeholder="Enter password">
</div>
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-registration-mark" aria-hidden="true"></span></span>
<input type="password" class="form-control" id="rpwd" placeholder="Repeat password">
</div>
<button type="button" onclick="location.href='Bootstrap.html';" class="btn btn-default" >Register
<span class="glyphicon glyphicon-send" aria-hidden="true">
</span>
</button>
</form>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- <script src="js/bootstrap.min.js"></script>-->
</body>
</html>