23 lines
629 B
Plaintext
23 lines
629 B
Plaintext
@model eSuite.API.Models.ConfirmEmailAccount
|
|
|
|
@{
|
|
ViewBag.Title = "e-suite";
|
|
Layout = "~/Views/Shared/_layout.cshtml";
|
|
}
|
|
|
|
<div class="logo"></div>
|
|
<div className="confirmAccount">
|
|
<h1>Confirm Account</h1>
|
|
@using (Html.BeginForm(FormMethod.Post, true, null))
|
|
{
|
|
<fieldset>
|
|
@Html.AntiForgeryToken()
|
|
<div>To activate your account, please enter a password</div>
|
|
|
|
@await Html.PartialAsync("_loginMethodChooser")
|
|
|
|
<button type="submit" class="btn btn-primary btn-spaced" name="Submit">Activate</button>
|
|
</fieldset>
|
|
}
|
|
</div>
|