-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On Reset password page, give extra info on how to reset
- Loading branch information
Showing
1 changed file
with
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,7 +109,19 @@ const Login: NextPage = () => { | |
</PageTitle> | ||
|
||
<div> | ||
Ben je je wachtwoord vergeten? Neem dan contact op met <a href="mailto:[email protected]?subject=VeiligStallen wachtwoord vergeten" className="underline">[email protected]</a> en vraag om een nieuw wachtwoord. | ||
<p className="my-2"> | ||
Ben je je wachtwoord vergeten? Neem dan contact op met <a href="mailto:[email protected]?subject=VeiligStallen wachtwoord vergeten" className="underline">[email protected]</a> en vraag om een nieuw wachtwoord. | ||
</p> | ||
<p className="my-2 mt-6"> | ||
Of: | ||
</p> | ||
<ol className="my-2"> | ||
<li className="list-decimal ml-4">Ga naar <a href="https://fms.veiligstallen.nl/security/login.cfm" className="underline" target="_blank">fms.veiligstallen.nl</a></li> | ||
<li className="list-decimal ml-4">Klik op <b>Wachtwoord vergeten?</b></li> | ||
<li className="list-decimal ml-4">Vul je e-mailadres in</li> | ||
<li className="list-decimal ml-4">Klik op <b>Verzenden</b></li> | ||
<li className="list-decimal ml-4">Log daarna <a href="/login" className="underline">hier</a> in</li> | ||
</ol> | ||
</div> | ||
</div> | ||
|
||
|
@@ -128,7 +140,7 @@ const Login: NextPage = () => { | |
</div> | ||
|
||
</div> | ||
</div> | ||
</div > | ||
</> | ||
); | ||
}; | ||
|