Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 9 additions & 26 deletions Home/templates/Home/home.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,14 @@
{% extends 'Home/index.html' %} {% block content %}
<div
class="d-flex align-items-center justify-content-center min-vh-100 bg-light"
>
<div class="jumbotron text-center py-5">
{% extends 'Home/index.html' %}
{% block content %}
<div class="d-flex align-items-center justify-content-center min-vh-100 bg-light">
<div class="jumbotron text-center py-5 bg-info text-white">
<h1 class="display-3 mb-4">Welcome to MGM Teaching Feedback</h1>
<p class="lead mb-4">
Give feedbacks on teaching faculty at MGMCET, Navi Mumbai
</p>
<hr class="my-4 w-50 mx-auto" />
<p class="mb-4">
If you are a student who wishes to give feedback, click "Enter as student"
</p>
<p class="lead mb-4">Give feedback on teaching faculty at MGMCET, Navi Mumbai</p>
<hr class="my-4 w-50 mx-auto bg-white" />
<p class="mb-4">If you are a student who wishes to give feedback, click "Enter as student"</p>
<div>
<a
class="btn btn-primary btn-lg mr-2"
role="button"
href="{% url 'GetFeedbackView' %}"
>
Enter as student
</a>
<a
class="btn btn-secondary btn-lg ml-2"
role="button"
href="{% url 'LoginView' %}"
>
Login as admin
</a>
<a class="btn btn-success btn-lg mr-2" role="button" href="{% url 'GetFeedbackView' %}">Enter as students</a>
<a class="btn btn-warning btn-lg ml-2" role="button" href="{% url 'LoginView' %}">Login as admin</a>
</div>
</div>
</div>
Expand Down