forked from ConnieLuong/CaMo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
40 lines (35 loc) · 1.53 KB
/
signup.html
File metadata and controls
40 lines (35 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>Camo - Sign Up</title>
<!--Stylesheets-->
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/signup.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Candal" />
<link href='https://fonts.googleapis.com/css?family=Caveat' rel='stylesheet'>
</head>
<body>
<!--Menu Bar-->
<nav id="menu"></nav>
<nav id="help"></nav>
<div class="jumbotron jumbotron-fluid" align="center" style="padding: 0; margin: 0">
<img src="image/loginTitle.png" STYLE="width: 100%">
</div>
<div id="signupBody" align="center">
<div id="form-card">
<p id="title">Sign-up with CaMo!</p>
<form>
<label>Username: </label>
<input id="username" type="text" placeholder="Username"><br><br>
<label>Password: </label>
<input id="password" type="password" placeholder="Password"><br><br>
</form>
<a href="index.html"><img id="login-button" src="image/checkButton.png" onclick="clickLogIn()" onmouseover="checkHover(this);" onmouseout="checkUnhover(this);" /></a>
<p style="margin-top: 4%">Already have an account? <a href="login.html">Log In</a>.</p>
</div>
</div>
<!-- Load Scripts-->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/mainpages.js"></script>
</body>
</html>