forked from pypi/warehouse
-
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.
Add template of OTP verification page
The presenter does not do anything. Fixes: pypa#996
- Loading branch information
Showing
5 changed files
with
122 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
-#} | ||
{% extends "base.html" %} | ||
|
||
{% block title %}Log in{% endblock %} | ||
|
||
{% block content %} | ||
{% if testPyPI %} | ||
{% set title = "TestPyPI" %} | ||
{% else %} | ||
{% set title = "PyPI" %} | ||
{% endif %} | ||
|
||
<section class="horizontal-section"> | ||
<div class="site-container"> | ||
<h1 class="page-title">Two-factor authentication</h1> | ||
|
||
<form method="POST" action="{{ request.current_route_path() }}"> | ||
<input name="csrf_token" type="hidden" value="{{ request.session.get_csrf_token() }}"> | ||
|
||
{% if redirect.data %} | ||
<input name="{{ redirect.field }}" type="hidden" value="{{ redirect.data }}"> | ||
{% endif %} | ||
|
||
{% if form.errors.__all__ %} | ||
<ul class="form-errors"> | ||
{% for error in form.errors.__all__ %} | ||
<li>{{ error }}</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
|
||
<div class="form-group"> | ||
<label for="otp_code" class="form-group__label">Authentication code</label> | ||
{{ form.otp_code(placeholder="Authentication code", autocorrect="off", autocapitalize="off", spellcheck="false", required="required", class_="form-group__input", tabindex="1", autofocus=true) }} | ||
{% if form.otp_code.errors %} | ||
<ul class="form-errors"> | ||
{% for error in form.otp_code.errors %} | ||
<li>{{ error }}</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="split-layout split-layout--table"> | ||
<div> | ||
<input type="submit" value="Verify" class="button button--primary" tabindex="3"> | ||
</div> | ||
<span></span> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</section> | ||
{% endblock %} |