-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ISG018 - Two Factor Auth</title>
<link rel="stylesheet" href="css/default.css">
</head>
<body>
<main class="login">
<div class="login__container">
<h1 class="login__title">Login</h1>
<form method="POST" action="valida.php" class="login__form">
<h2>Sign In</h2>
<p>Username: Egypt</p>
<p>Passphrase: Giza</p>
<br><br>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Type your username" class="login__input">
<span class="login__input-border"></span>
<label for="passphrase"></label>
<input type="passphrase" id="passphrase" name="passphrase" placeholder="Type your passphrase" class="login__input">
<span class="login__input-border"></span>
<button type="submit" class="login__submit">Sign In</button>
<a class="login__reset" href="#">Forgot the passphrase</a>
</form>
</div>
</main>
<footer>
<small>© 2023 Orlando Medeiros Júnior and Henry Melo Ceresetti</small>
</footer>
</body>
</html>