-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 899 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 899 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
<link rel="stylesheet" href="module.css" />
</head>
<body>
<h3>Vulnerable Login Page</h3>
<h1>Login</h1>
<form method="post" action="module.php">
<div class="frame">
<fieldset>
<label for="Username">Please enter Username: </label>
<input id="Username" name="username" type="text" required />
<label for="password">Password: </label>
<input id="password" name="password" type="text" required />
</fieldset>
<fieldset></fieldset>
<h3 style="font-size: Large; margin: 1em auto; text-align: center;"><a class="register" href="Registration.html">Register</a></h3>
<input type="submit" value="Login" />
</div>
</form>
</body>
</html>