Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
Latest commit
51 lines (40 loc) · 1.83 KB
/
Copy pathsignup.html
File metadata and controls
51 lines (40 loc) · 1.83 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
49
50
51
<!DOCTYPE html>
<htmllang="en">
<head>
<title>Python Flask OAD Projects App</title>
<linkhref="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<linkhref="~/Documents/OAD/Technical/flasky/PythonApp/static/css/jumbotron-narrow.css" rel="stylesheet">
<linkhref="../static/signup.css" rel="stylesheet">
<scriptsrc="../static/js/jquery-1.11.2.js"></script>
<scriptsrc="../static/js/signUp.js"></script>
</head>
<body>
<divclass="container">
<divclass="header">
<nav>
<ulclass="nav nav-pills pull-right">
<lirole="presentation" class="active" ><ahref="/">Home </a></li>
<lirole="presentation" class="active"><ahref="showSignIn">Sign In </a></li>
<lirole="presentation" class="active"><ahref="showSignUp">Sign Up</a></li>
</ul>
</nav>
<h3class="text-muted">Python Flask App</h3>
</div>
<divclass="jumbotron">
<h1>OAD Projects App</h1>
<formclass="form-signin">
<labelfor="inputName" class="sr-only">Name</label>
<inputtype="name" name="inputName" id="inputName" class="form-control" placeholder="Name" requiredautofocus>
<labelfor="inputEmail" class="sr-only">Email address</label>
<inputtype="email" name="inputEmail" id="inputEmail" class="form-control" placeholder="Email address" requiredautofocus>
<labelfor="inputPassword" class="sr-only">Password</label>
<inputtype="password" name="inputPassword" id="inputPassword" class="form-control" placeholder="Password" requiredautofocus>
<buttonid="btnSignUp" class="btn btn-lg btn-primary btn-block" type="button">Sign up</button>
</form>
</div>
<footerclass="footer">
<p>© OAD 2018</p>
</footer>
</div>
</body>
</html>