-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSignup.html
36 lines (36 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sign up Page</title>
<link rel="stylesheet" href="styleL.css">
<link rel="stylesheet" href="stylePC.css">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div class="center">
<h1>Sign Up</h1>
<form action="submit.inc.php" method="post">
<div class="txt_field">
<input type="text" name="UN" required>
<span></span>
<label>Username</label>
</div>
<div class="txt_field">
<input type="password" name="PS" oninput="strengthChecker()" id="password" required>
<span></span>
<label>Password</label>
<div id="strength-bar"></div>
</div>
<input type="submit" value="Signup">
</form>
<div>
<p id="msg"></p>
<br>
</div>
</div>
<script src="script1.js"></script>
</body>
</html>