Add meta tag and password length hint.

This commit is contained in:
Sage Vaillancourt 2022-10-02 11:12:50 -04:00
parent 9d15924d60
commit e2f918df72
2 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@
<input id="password" maxlength="32" minlength="4" name="password" type="password"> <input id="password" maxlength="32" minlength="4" name="password" type="password">
</div> </div>
<div id="confirm-password-div"> <div id="confirm-password-div">
<div style="font-size: 80%; margin-bottom: 1.5em;">Password must be between 8 and 64 characters</div>
<label id='confirm-password-label' for="confirm-password">Confirm Password: </label> <label id='confirm-password-label' for="confirm-password">Confirm Password: </label>
<input id="confirm-password" maxlength="32" minlength="4" name="confirm-password" type="password"> <input id="confirm-password" maxlength="32" minlength="4" name="confirm-password" type="password">
</div> </div>

View File

@ -5,6 +5,7 @@
<title>{% block title %}UnderCover{% endblock title %}</title> <title>{% block title %}UnderCover{% endblock title %}</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}"> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" /> <link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" />
<meta name="description" content="UnderCover is an easy way to generate unique cover letters, making it simple to send personalized applications to many companies quickly.">
<meta name="viewport" content="user-scalable=no; width=device-width"> <meta name="viewport" content="user-scalable=no; width=device-width">
<script type="text/javascript"> <script type="text/javascript">
function closeModal() { function closeModal() {