Skip to content
This repository was archived by the owner on Apr 12, 2022. It is now read-only.

Make the CLA status page better for a single dev checking their own CLA status #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ <h1 class="h3 mb-3 font-weight-normal">

<form class="form-checkcla" action="/" method="post" accept-charset="utf-8" enctype="application/x-www-form-urlencoded">
{% if gh_username and cla_result %}
<h1 class="h3 mb-3 font-weight-normal">Check another?</h1>
<h1 class="h3 mb-3 font-weight-normal">Check again?</h1>
{% else %}
<h1 class="h3 mb-3 font-weight-normal">Check if you have signed Python's <a href="https://www.python.org/psf/contrib/contrib-form/">CLA</a>.</h1>
<h4>Required before we can accept your contribution to <a href="https://github.com/python/cpython">Python</a>.</h4>
{% endif %}
<input id="gh_username" name="gh_username" type="text" value="" autofocus class="form-control" placeholder="GitHub username" required/>
<input id="gh_username" name="gh_username" type="text" value="{{gh_username}}" autofocus class="form-control" placeholder="GitHub username" required/>
<input type="submit" class="btn btn-lg btn-primary btn-block" value="Check"/>
</form>
{% endblock %}