-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
41 lines (37 loc) · 1.35 KB
/
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
37
38
39
40
41
<!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">
<title>Sign up</title>
<link rel="stylesheet" href="/css/sign-up.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body >
<section>
<div>
<form action="./home.html">
<label for="">User name</label>
<br>
<input type="text" id="name" name="username" placeholder="User name">
<br>
<label for="">Email</label>
<br>
<input type="email" id="email" name="Email" placeholder="Email">
<br>
<label for="">Password</label>
<br>
<input type="password" id="pass" name="password" placeholder="Password">
<br>
<input type="submit" onclick="saves()" class="signup" value="Sign Up">
<br>
<h4 style="display: inline-block;">OR</h4>
<a href="/sign-in.html">Sign In</a>
</form>
<img src="/images/about-img.jpg" alt="">
</div>
</section>
<script src="/js/sign-up.js"></script>
</body>
</html>