Commit 9711a17d authored by gergely-ujvari's avatar gergely-ujvari

Merge pull request #1936 from hypothesis/reset-password-language

Update copy on password reset forms
parents 79ebfc9a 136d3782
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
<!-- / Register --> <!-- / Register -->
<!-- Forgot password --> <!-- Forgot password -->
<form data-title="Confirm account" <form data-title="Password reset"
data-value="forgot_password" data-value="forgot_password"
class="form tab-pane" class="form tab-pane"
name="forgot_password" name="forgot_password"
...@@ -197,14 +197,14 @@ ...@@ -197,14 +197,14 @@
<div class="form-actions"> <div class="form-actions">
<div class="form-actions-buttons"> <div class="form-actions-buttons">
<button class="btn" type="submit" name="forgot_password" <button class="btn" type="submit" name="forgot_password"
status-button="forgot_password">Request access</button> status-button="forgot_password">Request reset</button>
</div> </div>
</div> </div>
</form> </form>
<!-- / Forgot password --> <!-- / Forgot password -->
<!-- Reset password --> <!-- Reset password -->
<form data-title="Activate an account" <form data-title="New password"
data-value="reset_password" data-value="reset_password"
class="form tab-pane" class="form tab-pane"
name="reset_password" name="reset_password"
...@@ -220,7 +220,9 @@ ...@@ -220,7 +220,9 @@
<div class="form-field" ng-if="!hasActivationCode"> <div class="form-field" ng-if="!hasActivationCode">
<label class="form-label" for="field-activate-code" <label class="form-label" for="field-activate-code"
>Your activation code:</label> >Your reset code:
<span class="form-hint">(this will be emailed to you)</span>
</label>
<input class="form-input" id="field-activate-code" <input class="form-input" id="field-activate-code"
type="text" name="code" value="" type="text" name="code" value=""
required autocorrect="false" autocapitalize="false" required autocorrect="false" autocapitalize="false"
...@@ -228,7 +230,7 @@ ...@@ -228,7 +230,7 @@
<ul class="form-error-list"> <ul class="form-error-list">
<li class="form-error" <li class="form-error"
ng-show="reset_password.code.$error.required" ng-show="reset_password.code.$error.required"
>Please enter your activation code</li> >Please enter your reset code</li>
<li class="form-error" <li class="form-error"
ng-show="reset_password.code.$error.response" ng-show="reset_password.code.$error.response"
>{{reset_password.code.responseErrorMessage}}</li> >{{reset_password.code.responseErrorMessage}}</li>
...@@ -237,7 +239,7 @@ ...@@ -237,7 +239,7 @@
<div class="form-field"> <div class="form-field">
<label class="form-label" for="field-activate-password" <label class="form-label" for="field-activate-password"
>Account password: >New password:
<span class="form-hint">(at least two characters)</span> <span class="form-hint">(at least two characters)</span>
</label> </label>
<input class="form-input" id="field-activate-password" <input class="form-input" id="field-activate-password"
...@@ -260,7 +262,7 @@ ...@@ -260,7 +262,7 @@
<div class="form-actions"> <div class="form-actions">
<div class="form-actions-buttons"> <div class="form-actions-buttons">
<button class="btn" type="submit" name="activate" <button class="btn" type="submit" name="activate"
status-button="activate">Activate</button> status-button="activate">Save</button>
</div> </div>
</div> </div>
</form> </form>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment