Skip to content

Commit

Permalink
Merge pull request #901 from zghosts/feature/a11y
Browse files Browse the repository at this point in the history
Feature/a11y
  • Loading branch information
heiglandreas authored Aug 24, 2020
2 parents c43e4e4 + db972f0 commit 87db40e
Show file tree
Hide file tree
Showing 13 changed files with 2,708 additions and 1,399 deletions.
2 changes: 1 addition & 1 deletion app/templates/Event/_common/event_header.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="page-header">
<div class="row event">
<div class="col-xs-12 col-sm-2 logo text-center">
<img src="{{ event.getSmallImage }}">
<img src="{{ event.getSmallImage }}" alt="{{ event.getName }}">
</div>
<div class="col-xs-12 col-sm-10 title">
<h1>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/Event/_common/summary.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set eventUrl = urlFor(
<div class="col-xs-12">
<div class="logo text-center">
<a href="{{ eventUrl }}">
<img src="{{ event.getSmallImage }}">
<img src="{{ event.getSmallImage }}" alt="{{ event.getName }}">
</a>
</div>
<div class="title">
Expand Down
4 changes: 2 additions & 2 deletions app/templates/_common/login.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
{% endif %}
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control" name="username">
<input id="username" type="text" class="form-control" name="username">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" name="password">
<input id="password" type="password" class="form-control" name="password">
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary" value="Log in">
Expand Down
2 changes: 1 addition & 1 deletion app/templates/layout.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% if not sidebar_col_width %} {% set sidebar_col_width = 3 %} {% endif %}
{% set main_col_width = 12 - sidebar_col_width %}
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}Joind.in{% endblock %}</title>
Expand Down
Loading

0 comments on commit 87db40e

Please sign in to comment.