-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
48 lines (36 loc) · 1.5 KB
/
signup.html
File metadata and controls
48 lines (36 loc) · 1.5 KB
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
<!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.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="/styles/main.css" rel="stylesheet">
<link href="/styles/login.css" rel="stylesheet">
</head>
<body>
<div class="container">
<form class="form-signin" data-prcnt-signup-form action="/">
<div class="alert alert-danger" style="display:none" >
<p class="message" data-prcnt-error></p>
</div>
<h2 class="form-signin-heading">Sign up</h2>
<input name="username" type="text" class="form-control" placeholder="Email address" required autofocus>
<input name="password" type="password" class="form-control" placeholder="Password" required>
<label class="checkbox">
<input type="checkbox" value="remember-me"> Remember me
</label>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div> <!-- /container -->
<script src="/js/vendor/jquery-1.10.2.min.js"></script>
<script src="/js/vendor/bootstrap.min.js"></script>
<script src="//localhost:8080/js/percent-ui.js"></script>
<script>
percent.app.key('TESTAPP:C7tLp/flbg41M5iyC6Tb02K8yR09zBb266KtiIyVkLs=');
</script>
</body>
</html>