generated from nighthawkcoders/Nighthawk-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.html
36 lines (26 loc) · 1017 Bytes
/
sign_up.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
---
layout: default
search_exclude: true
---
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="{{site.baseurl}}/assets/sign-in/styles.css">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
</head>
<body>
<div class="container">
<h2>Sign Up</h2>
<p>Have an account? <a href="{{site.baseurl}}/sign_in/">Login!</a></p>
<form id="signInForm">
<div class="input-group">
<input type="email" id="email" name="email" placeholder="Email" required><br><br>
<input type="name" id="name" name="name" placeholder="Name" required><br><br>
<input type="password" id="password" name="password" placeholder="Password" required><br><br>
<input type="submit" value="Sign In">
</div>
</form>
</div>
<script src="{{site.baseurl}}/assets/sign-up/script.js"></script>