-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
80 lines (61 loc) · 3.15 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
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Sign up to DecipherNotes to enjoy member-only features">
<title>Sign up • DecipherNotes</title>
<link href="https://getbootstrap.com/docs/4.4/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css">
<link href='https://fonts.googleapis.com/css?family=Alegreya SC' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Amaranth' rel='stylesheet'>
<link rel="stylesheet" href="css/signup_css.css" type="text/css">
<link rel="icon" href="Images/favicon.ico" type="image/gif">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script>
$(document).ready(function () {
$('.fa-feather-alt, .website-name').on('click', function () {
location.href = "index";
})
})
</script>
</head>
<body>
<form class="form-signup" method="POST">
<div class="text-center">
<h1 class="fa fa-feather-alt"></h1>
<h1 class="website-name">Decipher Notes</h1>
<hr width="33%">
<br>
<h3 class="mb-3">Sign up</h3>
</div>
<div class="form-label-group">
<input type="text" id="inputUsername" class="form-control" name="username" placeholder="Username" required autofocus>
<label for="inputUsername">Username</label>
</div>
<div class="form-label-group">
<input type="email" id="inputEmail" class="form-control" name="email" placeholder="Email address" required>
<label for="inputEmail">Email address</label>
</div>
<div class="form-label-group">
<input type="password" id="inputPassword" class="form-control" name="password" placeholder="Password" required>
<label for="inputPassword">Password</label>
</div>
<div align="center">
<button class="signup btn-lg" type="submit">Sign up</button>
</div>
<div align="center" style="margin-top: 20px">
<p style="display: inline-block">Already a member?</p>
<a class="signin-redirect" href="signin" type="button">Sign in</a>
</div>
<br>
<br>
<p align="center"><strong>Note:</strong> Your privacy is important to us.<br>We'll never share your information.<br></p>
</form>
</body>
</html>