-
Notifications
You must be signed in to change notification settings - Fork 1
/
signUp.html
60 lines (55 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title> Login Screen </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.2.0/respond.js"></script>
<![endif]-->
<!-- Load Bootstrap JavaScript components -->
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="verify.js"></script>
<link rel="stylesheet" type="text/css" href="loginStyle.css">
<style>
.blue {
border-style: solid;
border-color: blue;
}
.red {
border-style: solid;
border-color: red;
}
.yellow {
border-style: solid;
border-color: #ffff00;
}
.none {
}
</style>
</head>
<body>
<div id="log" class="container">
<div class="well">
<p style="font-size: 150%;text-align: center;">Please enter a username and password</p>
</div>
<p></p>
<hr/>
<div class="row">
<form>
<label>User Name: <input type="text" name="name"/></label>
<label>Password: <input type="text" name="passwd"/></label>
<label>Retype password: <input type="text" name="passwd2"/></label>
</form>
<p id="errors"></p>
<button id="verify">Verify account</button>
</div>
</div>
</body>
</html>