Skip to content
Permalink
3339c012d1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
36 lines (25 sloc) 639 Bytes
{% extends "base.html" %}
{% block navTabs %}
{% include "helpers/sessionNav.html" %}
{% endblock navTabs %}
{% block content %}
<h1>Basic Auth Challenge</h1>
{% markdown %}
In this example we are using HTTP Basic auth.
Modify the headers to login using HTTP Basic Auth with the following
credentials:
- User: Lorgar
- Password: Cadia
{% endmarkdown %}
{% if msg %}
<div class="row">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<p>{{ msg }}</p>
</div>
</div>
</div>
</div>
{% endif %}
{% endblock %}