-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontpage.html
68 lines (62 loc) · 1.51 KB
/
frontpage.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
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fortipad documents</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: rgb(255, 255, 255);">
<div class="login-container">
<h1 class="login-title"> User login</h1>
<form action="login_form.php" method="POST">
<!--
below is the Login form
-->
<label for="username">Username :</label>
<input type="text" id="username" name="username" placeholder="enter username" required>
<label for="password">Password :</label>
<input type="password" id="password" name="password" maxlength="6" placeholder="enter password" required>
<input type="submit" value="login">
</form>
</div>
</body>
<style>
body {
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background-color: greenyellow;
padding: 30px;
border-radius: 60px;
}
.login-title {
font-size: 40px;
text-align: center;
margin-bottom: 40px;
}
form {
display: block;
}
label {
display: block;
margin-bottom: 10px;
}
input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid linen;
border-radius: 5px;
margin-bottom: 20px;
}
input[type="submit"] {
background-color: black;
color: white;
cursor: pointer;
}
</style>
</html>