-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (38 loc) · 2.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Blah Blah">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Sign-Up Page with Standard CSS">
<meta name="keywords" content="HTML, CSS, JS, PHP">
<title>Sign-Up Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="font-family: britannic; font-size: 75%; justify-content: center; align-items: center;">
<form action="index.php" method="POST" style="border:1px solid #ccc; border-radius: 50px; position: relative; transform: translateY(50%);">
<div class="container" style="margin: 10px; margin-bottom: 5px;">
<h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="email" placeholder="Enter Email" name="email" required>
<label for="pwd"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="pwd" required>
<br>
<label for="pwd-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="pwd-repeat" required>
<label>
<input type="checkbox" name="remember" id="rememberCheckbox" style="margin-bottom:15px; accent-color: dodgerblue;"> Remember me
</label>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<p><a href="login.html" style="color:dodgerblue" target="_self">Already have an account?</a></p>
<div class="clearfix">
<button type="reset" class="cancelbtn" style="border-bottom-left-radius: 20px;">Cancel</button>
<button type="submit" class="logupbtn" style="border-bottom-right-radius: 20px;">Sign Up</button>
</div>
</div>
</form>
<script src="index.js"></script>
</body>
</html>