-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
57 lines (45 loc) · 1.63 KB
/
Copy pathadmin.php
File metadata and controls
57 lines (45 loc) · 1.63 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
session_start();
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>DFR | Admin</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="title">
Donation and Fund Raiser
</div>
<div id="nav">
<a href="index.html" class="move"> Home </a>
<a href="admin.php" class="move" id="current"> Admin </a>
<a href="receiver.php" class="move"> Receiver Registration </a>
<a href="donor.php" class="move"> Donor Registration </a>
<a href="receiverList.php" class="move"> Receiver List </a>
<a href="donorList.php" class="move"> Donor List </a>
<a href="contact.html" class="move"> Contact Us </a>
</div>
<div id="login" class="background">
<form action="admincheck.php" method="post">
<br><br><br><br>
Username :
<input type="text" name="uname" placeholder="Enter Your Username" class="input"> <br> <br>
Password :
<input type="password" name="pass" placeholder="Enter Your Password" class="input"> <br> <br>
<input type="submit" name="submit" value ="Login" class="submit btn">
<br><br><br><br><br><br><br>
</form>
</div>
<div id="footer">
<footer>
<p id="footer-text"> Copyright © to DFR - IIITDMJ </p>
</footer>
</div>
</body>
</html>