-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-release v2: Recurring Sessions, Fixed Bugs/UI changes, Tutor Port…
…al enhances
- Loading branch information
1 parent
a2ed6bb
commit 8e99ed4
Showing
8 changed files
with
218 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" | ||
rel="stylesheet" | ||
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" | ||
crossorigin="anonymous" | ||
/> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css" | ||
rel="stylesheet" | ||
/> | ||
{% load static %} | ||
<link href="{% static 'tutoring_student/style.css' %}" rel="stylesheet" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title id="title">Iridium Tutoring | 404</title> | ||
</head> | ||
<body> | ||
{% load static %} | ||
<!-- Nav Bar--> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="https://www.iridiumtutoring.org" | ||
><img | ||
src="{% static 'tutoring_student/images/iridiumbannerheader.png' %}" | ||
class="img-fluid" | ||
style="height: 3rem" | ||
alt="Iridium Tutoring Logo" | ||
/></a> | ||
<button | ||
class="navbar-toggler" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#navbarNavAltMarkup" | ||
aria-controls="navbarNavAltMarkup" | ||
aria-expanded="false" | ||
aria-label="Toggle navigation" | ||
> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup"> | ||
<div class="navbar-nav"> | ||
<a | ||
class="nav-link fw-bold" | ||
href="{% url 'tutoring_student:index' %}" | ||
>Home</a | ||
> | ||
<a | ||
class="nav-link fw-bold" | ||
href="{% url 'tutoring_student:studentView' %}" | ||
>Students</a | ||
> | ||
<a | ||
class="nav-link fw-bold" | ||
href="{% url 'tutoring_student:tutorView' %}" | ||
>Tutors</a | ||
> | ||
</div> | ||
</div> | ||
<div class="nav navbar-nav ml-auto mr-0"> | ||
<a class="nav-link fw-bold" href="https://www.iridiumtutoring.org" | ||
>Back To Main Site</a | ||
> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="container mt-3"> | ||
<h1 class="text-center mt-5">Error</h1> | ||
<hr /> | ||
<p class="text-center lead">{{exception}}</p> | ||
<a class="btn btn-secondary btn-lg rounded-pill mt-3 mb-5" href="" role="button">Go Back</a> | ||
</div> | ||
|
||
<!-- Footer--> | ||
{% include 'tutoring_student/large-footer.html' %} | ||
</body> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" | ||
crossorigin="anonymous" | ||
></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.