-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from RSE-Sheffield/ui/navbar
UI/navbar
- Loading branch information
Showing
9 changed files
with
101 additions
and
71 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
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
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
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,12 @@ | ||
<header> | ||
<div class="px-3 py-2 bg-light"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="{% url 'home' %}"><img src="/static/images/sort_logo_placeholder.png" alt="Self-assessment of organisational readiness tool logo" height="30rem" /></a> | ||
</div> | ||
</div> | ||
<div class="px-3 py-2 subheader"> | ||
<div class="container"> | ||
The Self-Assessment of Organisational Readiness Tool | ||
</div> | ||
</div> | ||
</header> |
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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{% extends 'base_manager.html' %} | ||
|
||
{% block content %} | ||
<div class="container mt-3"> | ||
<div class="container mx-auto px-4 py-8 mt-4"> | ||
<div> | ||
<h1>Invitations</h1> | ||
<p class="subtitle">Use the form below to send out invitations to your survey participants.</p> | ||
</div> | ||
|
||
<div> | ||
<h1>Invitations</h1> | ||
<p class="subtitle">Use the form below to send out invitations to your survey participants.</p> | ||
</div> | ||
|
||
<div class="card custom-card shadow-sm my-4"> | ||
<div class="card-body"> | ||
<div class="card custom-card shadow-sm my-4"> | ||
<div class="card-body"> | ||
|
||
<form method="post"> | ||
{% csrf_token %} | ||
<form method="post"> | ||
{% csrf_token %} | ||
|
||
<div class="mb-3"> | ||
<label for="id_email" class="form-label">Email Address</label> | ||
<input type="email" name="email" id="id_email" class="form-control" placeholder="Enter email address" required> | ||
<small class="form-text text-muted">Enter the participant's email address. You can separate multiple addresses with commas.</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="id_email" class="form-label">Email Address</label> | ||
<input type="email" name="email" id="id_email" class="form-control" placeholder="Enter email address" required> | ||
<small class="form-text text-muted">Enter the participant's email address. You can separate multiple addresses with commas.</small> | ||
</div> | ||
|
||
<div class="mb-3"> | ||
<label for="id_message" class="form-label">Message (Optional)</label> | ||
<textarea name="message" id="id_message" class="form-control" rows="3" placeholder="Write your message here..."></textarea> | ||
<small class="form-text text-muted">Add any additional messages.</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="id_message" class="form-label">Message (Optional)</label> | ||
<textarea name="message" id="id_message" class="form-control" rows="3" placeholder="Write your message here..."></textarea> | ||
<small class="form-text text-muted">Add any additional messages.</small> | ||
</div> | ||
|
||
<div class="text-center"> | ||
<button type="submit" class="btn btn-primary" style="background-color: #6933AD; border: none;">Send</button> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<div class="text-center"> | ||
<button type="submit" class="btn btn-primary" style="background-color: #6933AD; border: none;"><i class="bx bxs-send"></i> Send</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
{% endblock %} |