60 lines
2.7 KiB
Plaintext
60 lines
2.7 KiB
Plaintext
@page
|
|
@model RegisterModel
|
|
@{
|
|
ViewData["Title"] = "Register";
|
|
}
|
|
<div class="jumbotron text-center">
|
|
<img alt="Props logo" src="~/images/logo-simplified.svg" class="img-fluid" style="max-height: 150px;" asp-append-version="true" />
|
|
<h1 class="mt-3 mb-4 display-1">@ViewData["Title"]</h1>
|
|
<p>Create more projects and access them across your devices! Join the community and show off your projects to the world!</p>
|
|
</div>
|
|
<div class="jumbotron sub flex-grow-1">
|
|
<div class="py-3 row justify-content-md-center">
|
|
<div class="col-md-4">
|
|
<form asp-route-returnUrl="@Model.ReturnUrl" method="post">
|
|
<h4>Create a new account.</h4>
|
|
<hr />
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<div class="mb-3">
|
|
<label asp-for="Input.Email" class="form-label"></label>
|
|
<input asp-for="Input.Email" class="form-control" />
|
|
<span asp-validation-for="Input.Email" class="text-danger"></span>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label asp-for="Input.Password" class="form-label"></label>
|
|
<input asp-for="Input.Password" class="form-control" />
|
|
<span asp-validation-for="Input.Password" class="text-danger"></span>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label asp-for="Input.ConfirmPassword" class="form-label"></label>
|
|
<input asp-for="Input.ConfirmPassword" class="form-control" />
|
|
<span asp-validation-for="Input.ConfirmPassword" class="text-danger"></span>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Register</button>
|
|
</form>
|
|
</div>
|
|
@if ((Model.ExternalLogins?.Count ?? 0) != 0)
|
|
{
|
|
<div class="col-md-6 md-offset-2">
|
|
<h4>Use another service to register.</h4>
|
|
<hr />
|
|
<form id="external-account" asp-page="./ExternalLogin" asp-route-returnUrl="@Model.ReturnUrl" method="post" class="form-horizontal">
|
|
<div>
|
|
<p>
|
|
@foreach (var provider in Model.ExternalLogins)
|
|
{
|
|
<button type="submit" class="btn btn-primary" name="provider" value="@provider.Name" title="Log in using your @provider.DisplayName account">@provider.DisplayName</button>
|
|
}
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|