-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin.html
93 lines (88 loc) · 3.49 KB
/
admin.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE HTML>
<html>
<head>
<title>Canapé</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<!-- Main -->
<div id="preview">
<div class="inner">
<div class="content">
<header>
<h2>Canapé Admin</h2>
</header>
<p>Admin Panel</p>
<form action="admin.html" method="post">
<select name="hostel" required>
<option value="">-- Select Hostel --</option>
<option value="1">A</option>
<option value="2">B</option>
<option value="3">C</option>
<option value="4">D</option>
<option value="5">E</option>
<option value="6">F</option>
<option value="7">G</option>
<option value="8">H</option>
<option value="9">I</option>
<option value="10">J</option>
<option value="11">K</option>
<option value="12">L</option>
<option value="13">M</option>
<option value="14">N</option>
<option value="15">PG</option>
</select><br />
<input type="date" name="date" id="today" /><br />
<input type="button" name="dopost" value="View Records" onclick="location.href='#'" />
</form><br />
<p>Meals Skipped</p>
<div style="overflow-x:auto;">
<table class="table-wrapper">
<tr>
<th>Breakfast</th>
<td>45</td>
</tr>
<tr>
<th>Lunch</th>
<td>23</td>
</tr>
<tr>
<th>Dinner</th>
<td>31</td>
</tr>
</table>
</div>
<input type="button" value="Download XLSX" onclick="location.href='record.xlsx'">
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<a href="#" class="info fa fa-info-circle"><span>About</span></a>
<div class="inner">
<div class="content">
<h3>About Canapé</h3>
<p>Canapé deals with the technological aspect in solving the problem of food wastage in college mess at individual level. The proposed concept can be implemented by universities and colleges in their mess to provoke students to save food and therefore save money. The solution basically involves an Android Application which handles the whole Mess Management in a concise manner.</p>
</div>
<div class="copyright">
<h3>Follow Developer</h3>
<ul class="icons">
<li><a href="https://linkedin.com/in/ShivamGoyal1899" class="icon fa-linkedin" target="_blank"><span class="label">LinkedIn</span></a></li>
<li><a href="https://github.com/ShivamGoyal1899" class="icon fa-github" target="_blank"><span class="label">GitHub</span></a></li>
<li><a href="https://twitter.com/ShivamGoyal1899" class="icon fa-twitter" target="_blank"><span class="label">Twitter</span></a></li>
<li><a href="https://instagram.com/shivam.dev" class="icon fa-instagram" target="_blank"><span class="label">Instagram</span></a></li>
</ul>
<span>Hand Crafted with <span>♥</span> in India by <a href="https://goyalshivam.com" target="_blank">Shivam Goyal</a></span>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>