forked from Kashyap110/Railway-consession
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
89 lines (80 loc) · 3.46 KB
/
dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
</head>
<body>
<nav>
<div class="logo-name">
<i class="uil uil-bars sidebar-toggle"></i>
<span class="logo_name">Student Portal</span>
</div>
<div class="menu-items">
<ul class="nav-links">
<!-- <li><a href="studentdetails.php">
<i class="uil uil-estate"></i>
<span class="link-name">Student details</span>
</a></li>
<li><a href="profile.php">
<i class="uil uil-files-landscapes"></i>
<span class="link-name">Profile</span>
</a></li>
<li><a href="passdetails.php">
<i class="uil uil-chart"></i>
<span class="link-name">Concession Form</span>
</a></li> -->
<li><a href="requestnew.php">
<i class="uil uil-chart"></i>
<span class="link-name">Request New</span>
</a></li>
<li><a href="requestrenewal.php">
<i class="uil uil-chart"></i>
<span class="link-name">Renewal Request</span>
</a></li>
<li><a href="status.php">
<i class="uil uil-chart"></i>
<span class="link-name">Status</span>
</a></li>
<li><a href="notification.php">
<i class="uil uil-chart"></i>
<span class="link-name">Notification</span>
</a></li>
</ul>
<ul class="logout-mode">
<li><a href="logout.php">
<i class="uil uil-signout"></i>
<span class="link-name" onclick="alert('Logged out successfully!');">Logout</span>
</a></li>
</li>
</ul>
</div>
</nav>
<section class="dashboard">
<div class="dash-content">
<div class="overview">
<div class="title">
<i class="uil uil-notes"></i>
<span class="text">Guidelines</span>
</div>
<br>
<div class="boxes">
<div class="box box1">
<span class="text"><ul><br>
<li>Read all the guidelines before filling out the form.</li><br>
<li>Filling of the Student details form is mandatory for the application of railway concession form.</li><br>
<li>All the information should be filled to one's complete knowledge.</li><br>
<li>Concession slip would be given only after the verification of application.</li><br>
<li>Upload any required documents in clearly visible pdf format.</li><br>
<li>Any kind of malpractices will not be tolerated.</li><br>
</ul></span>
</div>
</div>
</div>
</section>
<script src="js/dashboard.js"></script>
</body>
</html>