-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
38 lines (35 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sign Up</title>
<link rel="stylesheet" href="css/login.css">
<link rel="icon" href="img/logo-light.png">
<link rel="stylesheet" href="css/fontawesome-free-6.6.0-web/css/all.css">
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="img/0826.mp4" type="video/mp4">
</video>
<div class="container">
<h1>SIGN UP</h1>
<form>
<label>FIRST NAME</label>
<input type="text">
<br>
<label>LAST NAME</label>
<input type="text">
<br>
<label>E-MAIL</label>
<input type="text">
<br>
<label>PASSWORD</label>
<input type="password"><br>
<span>Already have an account? </span><a href="login.html">Sign In</a>
<br> <br>
<a type="submit" id="sign-in" href="login.html">Sign up</a>
</form>
</div>
<script src="script.js"></script>
</body>
</html>