forked from vivek0464/Online-FIR-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (27 loc) · 866 Bytes
/
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
<!DOCTYPE html>
<html>
<body>
<div align="center">
<h2>FIR PORTAL</h2>
<link rel="stylesheet" href="login.css">
<!--the login form-->
<div class="container">
<form action="login.php" method="POST">
<div class="imgcontainer">
<img src="img_avatar.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="submit">Login</button>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn" onclick="window.location.href = 'Signup.html'">Signup</button>
</div>
</form>
</div>
</div>
</body>
</html>