This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/templates/githuberror.html

24 lines
562 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}
<title>Error Logging in with GitHub · Quay.io</title>
{% endblock %}
{% block body_content %}
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>There was an error logging in with GitHub.</h2>
2013-10-13 20:50:48 +00:00
{% if error_message %}
<div class="alert alert-danger">{{ error_message }}</div>
{% endif %}
<div>
Please register using the <a href="/">registration form</a> to continue.
</div>
</div>
</div>
</div>
{% endblock %}