-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.index.html
More file actions
23 lines (23 loc) · 817 Bytes
/
Copy path2.index.html
File metadata and controls
23 lines (23 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign In Forms</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="border">
<form onsubmit="clickSubmitButton(event)">
<h2>Sign Up Form</h2>
<input type="text" id="username" placeholder="Username" ></br>
<input type="text" id="email" placeholder="Email" ></br>
<input type="password" id="confirmpassword" placeholder="Confirm Password" ></br>
<input type="password" id="password" placeholder="Password" ></br>
<button type="submit">Sign In</button>
</form>
<p id='welcome-message'></p>
<script src="script.js"></script>
<p id='Registration-Completed'></p>
<script src="script.js"></script>
</div>
</body>
</html>