Freelancer Password Reset templates and Login modification for it
This commit is contained in:
@ -13,6 +13,9 @@
|
||||
<label for="stayloggedin">Stay Logged In: </label> <input type="checkbox" id="stayloggedin" name="stayloggedin"><br>
|
||||
<button type="submit" class="button">Log In</button>
|
||||
</form>
|
||||
<form action="/freelancer/login/passwordreset" method="get">
|
||||
<button type="submit" class="button">Reset Password</button>
|
||||
</form>
|
||||
{{/cookieloggedin}}
|
||||
{{#cookieloggedin}}
|
||||
<form action="/freelancer/profile" method="get">
|
||||
|
@ -20,6 +20,9 @@
|
||||
The login form has not been filled out completely
|
||||
</div>
|
||||
{{/LOGIN_ERROR_EMAIL_PASS_NOT_FILLED}}
|
||||
<form action="/freelancer/login/passwordreset" method="get">
|
||||
<button type="submit" class="button">Reset Password</button>
|
||||
</form>
|
||||
<form action="/freelancer/login" method="get">
|
||||
<button type="submit" class="button">Log In Error: Return to login</button>
|
||||
</form>
|
||||
|
18
templates/freelancer_Login_PasswordReset.html
Normal file
18
templates/freelancer_Login_PasswordReset.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{> templateIncludes/style.css.html}}
|
||||
</head>
|
||||
<body>
|
||||
<h2>Freelancer Password Reset</h2>
|
||||
<div>
|
||||
<form action="/freelancer/login/passwordreset/fulfilment" method="post">
|
||||
<label for="freelanceremail">E-Mail:</label> <input type="email" id="freelanceremail" name="freelanceremail" value=""><br>
|
||||
<button type="submit" class="button">Request Temporary Password Reset E-Mail</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
23
templates/freelancer_Login_PasswordReset_Fulfilment.html
Normal file
23
templates/freelancer_Login_PasswordReset_Fulfilment.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{> templateIncludes/style.css.html}}
|
||||
</head>
|
||||
<body>
|
||||
<h2>Freelancer Password Reset</h2>
|
||||
{{^passwordresetmailsent}}
|
||||
<form action="/freelancer/login/passwordreset" method="get">
|
||||
<button type="submit" class="button">Email could not be found try again.</button>
|
||||
</form>
|
||||
{{/passwordresetmailsent}}
|
||||
{{#passwordresetmailsent}}
|
||||
<div>
|
||||
Reset E-Mail has been sent to {{resetemail}}
|
||||
</div>
|
||||
{{> templateIncludes/returnToIndexButton.html.html}}
|
||||
{{/passwordresetmailsent}}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
@ -13,6 +13,9 @@
|
||||
<label for="stayloggedin">Stay Logged In: </label> <input type="checkbox" id="stayloggedin" name="stayloggedin"><br>
|
||||
<button type="submit" class="button">Log In</button>
|
||||
</form>
|
||||
<form action="/freelancer/login/passwordreset" method="get">
|
||||
<button type="submit" class="button">Reset Password</button>
|
||||
</form>
|
||||
{{/cookieloggedin}}
|
||||
{{#cookieloggedin}}
|
||||
<form action="/freelancer/profile" method="get">
|
||||
|
Reference in New Issue
Block a user