-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script defer type="text/javascript" src="js/index.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/Logo-256px.ico" type="image/x-icon">
<title>Amugus Login</title>
</head>
<body>
<div class="login-container">
<div class="top">
<h1>Login</h1>
</div>
<form action="php/index.php" method="post" autocomplete="off">
<div class="text-input">
<div class="i">
<i class="fas fa-user"></i>
</div>
<div class="div">
<input class="input" name="username" type="text" required>
<label>Username</label>
</div>
</div>
<div class="text-input">
<div class="i">
<i class="fas fa-lock"></i>
</div>
<div class="div">
<input class="input" name="password" type="password" required>
<label>Password</label>
</div>
</div>
<div class="pass">Forgot Password?</div>
<form action="register.php">
<button type="submit" value="Login">
</form>
<div class="signup-link">
Not a member? <a href="register.html">Sign-Up</a>
</div>
</form>
</div>
</body>
</html>