main
Last change
on this file since 2aea0fd was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
582 bytes
|
Line | |
---|
1 | @page
|
---|
2 | @model RegisterConfirmationModel
|
---|
3 | @{
|
---|
4 | ViewData["Title"] = "Register confirmation";
|
---|
5 | }
|
---|
6 |
|
---|
7 | <h1>@ViewData["Title"]</h1>
|
---|
8 | @{
|
---|
9 | if (@Model.DisplayConfirmAccountLink)
|
---|
10 | {
|
---|
11 | <p>
|
---|
12 | This app does not currently have a real email sender registered, see <a href="https://aka.ms/aspaccountconf">these docs</a> for how to configure a real email sender.
|
---|
13 | Normally this would be emailed: <a id="confirm-link" href="@Model.EmailConfirmationUrl">Click here to confirm your account</a>
|
---|
14 | </p>
|
---|
15 | }
|
---|
16 | else
|
---|
17 | {
|
---|
18 | <p>
|
---|
19 | Please check your email to confirm your account.
|
---|
20 | </p>
|
---|
21 | }
|
---|
22 | }
|
---|
23 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.