-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.25 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.25 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Employee App</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="register.js"></script>
</head>
<body>
<div class="wave">
<img src="img/bg.svg">
</div>
<div class="wrapper">
<div class="title">
Login Form
</div>
<div class="form">
<div class="input_field">
<label>User Name</label>
<input type="text" id="userName" class="input">
</div>
<div class="input_field">
<label>Password</label>
<input type="password" id="password" class="input">
</div>
<div class="input_field">
<input type="submit" class="btn" id="submit" onclick="login()">
</div>
</div>
</div>
</body>
</html>