Skip to content

Commit

Permalink
Merge 7a9ff78 into 8e43d89
Browse files Browse the repository at this point in the history
  • Loading branch information
acdha committed Dec 7, 2018
2 parents 8e43d89 + 7a9ff78 commit 8b1f825
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion concordia/templates/base.html
Expand Up @@ -32,7 +32,7 @@
</head>

<body class="view-{{ VIEW_NAME_FOR_CSS }} section-{{ PATH_LEVEL_1|default:'homepage' }} environment-{{ CONCORDIA_ENVIRONMENT }} {% block extra_body_classes %}{% endblock %}">
<header>
<header role="banner" aria-label="site navigation">
<nav class="navbar navbar-expand-lg flex-row navbar-offwhite bg-offwhite justify-content-between align-items-end">
<div class="navbar-brand d-flex align-items-stretch">
<a href="https://www.loc.gov">
Expand Down
14 changes: 7 additions & 7 deletions concordia/templates/home.html
Expand Up @@ -49,20 +49,20 @@ <h1 class="title">By the People:</h1>
<h2 class="px-default offwhite-text px-md-0 ml-md-3">Anyone Can Contribute</h2>
</div>
<div id="homepage-contribute-activities" class="d-flex justify-content-around text-center">
<div class="homepage-activity px-1 pl-mx-2 px-lg-3">
<div class="homepage-activity px-1 pl-mx-2 px-lg-3" >
<a aria-hidden="true" href="{% url 'how-to-transcribe' %}"><img class="img-fluid" src="{% static 'img/homepage-pencil.svg' %}"></a>
<h4 class="mt-3"><a class="offwhite-text" href="{% url 'how-to-transcribe' %}">TRANSCRIBE</a></h4>
<p class="offwhite-text">Type what you see on the page.</p>
<h4 class="mt-3"><a class="offwhite-text" href="{% url 'how-to-transcribe' %}" aria-describedby="homepage-activity-transcribe-help">TRANSCRIBE</a></h4>
<p id="homepage-activity-transcribe-help" class="offwhite-text">Type what you see on the page.</p>
</div>
<div class="homepage-activity px-1 pl-mx-2 px-lg-3">
<a aria-hidden="true" class="offwhite-text" href="{% url 'how-to-review' %}"><img class="img-fluid" src="{% static 'img/homepage-checkmark.svg' %}"></a>
<h4 class="offwhite-text mt-3"><a class="offwhite-text" href="{% url 'how-to-review' %}">REVIEW</a></h4>
<p class="offwhite-text">Register to edit and complete transcriptions.</p>
<h4 class="offwhite-text mt-3"><a class="offwhite-text" href="{% url 'how-to-review' %}" aria-describedby="homepage-activity-review-help">REVIEW</a></h4>
<p id="homepage-activity-review-help" class="offwhite-text">Register to edit and complete transcriptions.</p>
</div>
<div class="homepage-activity px-1 pl-mx-2 px-lg-3">
<a aria-hidden="true" class="offwhite-text" href="{% url 'how-to-tag' %}"><img class="img-fluid" src="{% static 'img/homepage-tag.svg' %}"></a>
<h4 class="offwhite-text mt-3"><a class="offwhite-text" href="{% url 'how-to-tag' %}">TAG</a></h4>
<p class="offwhite-text">Register to add tags and share what you find.</p>
<h4 class="offwhite-text mt-3"><a class="offwhite-text" href="{% url 'how-to-tag' %}" aria-describedby="homepage-activity-tag-help">TAG</a></h4>
<p id="homepage-activity-tag-help" class="offwhite-text">Register to add tags and share what you find.</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion concordia/templates/registration/login.html
Expand Up @@ -15,7 +15,7 @@
<div class="col-8 col-md-6 col-lg-4 mx-auto my-3">
<h2 class="text-center">Welcome back!</h2>

<form method="post" action="{% url 'login' %}" class="col-10 my-3 mx-auto">
<form method="post" action="{% url 'login' %}" class="col-10 my-3 mx-auto" role="dialog">
{% csrf_token %}

{% if next %}
Expand Down
2 changes: 1 addition & 1 deletion concordia/templates/registration/password_reset_done.html
Expand Up @@ -11,7 +11,7 @@
{% block main_content %}
<div class="row">
<div class="col-md-8 mx-auto p-3">
<p>
<p role="alert">
{% trans "We've emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly." %}
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion concordia/templates/registration/password_reset_form.html
Expand Up @@ -15,7 +15,7 @@
{% block main_content %}
<div class="container">
<div class="row">
<div class="col-6 mx-auto">
<div class="col-6 mx-auto" role="dialog">
<p>
{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}
</p>
Expand Down

0 comments on commit 8b1f825

Please sign in to comment.