-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·62 lines (38 loc) · 1.3 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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Infodesk Portal</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="fog.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300">
</head>
<body>
<section class="fog">
<figure class="absolute-bg" style="background-image: url('fog.jpeg');"></figure>
<div class="fog__container">
<div class="fog__img fog__img--first"></div>
<div class="fog__img fog__img--second"></div>
<h1> Infodesk Portal </h1>
<div class="main">
<form method="post">
<div>
<h2>System Admin</h2>
<input type="text" placeholder="Username" name="sausername" >
<input type="password" placeholder="Password" name="sapassword" id="sapassword" >
</div>
<div>
<h2>Info-Desk Organizer</h2>
<input type="text" placeholder="Username" name="infousername" id="infousername" >
<input type="password" placeholder="Password" name="infopassword" id="infopassword" >
</div>
<a href="login.php">
<button>log in</button>
</a>
</form>
</div>
</div>
</section>
</body>
</html>