-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (41 loc) · 1.1 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
{% load static %}
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
.jumbotron {
margin-top: 0px;
margin-bottom: 0px;
background-image: url('{% static "images/coo.jpeg" %}');
background-size: cover;
background-repeat: no-repeat;
}
.jumbotron h1 {
text-align: center;
}
.alert {
margin: 0px;
}
</style>
</head>
<body>
{% include "school/navbar.html" %}
<br>
<br>
<div class="jumbotron" style="margin-bottom: 0px;margin-top: 0px;">
<br>
<h1 class="display-5 glow" style="color:black"><b>Student Info</b></h1>
<h1 class="display-5 glow" style="color:black"><b>Management System</b></h1>
<br><br>
<h3 class="text-center" style="color:black; font-size: 15px">Made by: Shivani Joshi (112003058) and Juhi Shekokar (112003059)</h3>
<br><br><br><br><br>
<p class="lead">
<a class="btn btn-danger btn-lg" href="/studentsignup" role="button">Sign Up as Student</a>
</p>
<br><br>
</div>
{% include "school/footer.html" %}
</body>
</html>