main
|
Last change
on this file since 08aefc6 was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago |
|
Initial commit
|
-
Property mode
set to
100644
|
|
File size:
1.9 KB
|
| Line | |
|---|
| 1 | @model KernelRecordsMVC.Application.ViewModels.RegisterViewModel
|
|---|
| 2 |
|
|---|
| 3 | <h2>Register</h2>
|
|---|
| 4 |
|
|---|
| 5 | <form asp-action="Register" method="post">
|
|---|
| 6 |
|
|---|
| 7 | <div class="mb-3">
|
|---|
| 8 | <label asp-for="Email" class="form-label"></label>
|
|---|
| 9 |
|
|---|
| 10 | <input asp-for="Email"
|
|---|
| 11 | class="form-control"/>
|
|---|
| 12 |
|
|---|
| 13 | <span asp-validation-for="Email"
|
|---|
| 14 | class="text-danger"></span>
|
|---|
| 15 | </div>
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | <div class="mb-3">
|
|---|
| 19 | <label asp-for="Username" class="form-label"></label>
|
|---|
| 20 |
|
|---|
| 21 | <input asp-for="Username"
|
|---|
| 22 | class="form-control"/>
|
|---|
| 23 |
|
|---|
| 24 | <span asp-validation-for="Username"
|
|---|
| 25 | class="text-danger"></span>
|
|---|
| 26 | </div>
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | <div class="mb-3">
|
|---|
| 30 | <label asp-for="Password"
|
|---|
| 31 | class="form-label"></label>
|
|---|
| 32 |
|
|---|
| 33 | <input asp-for="Password"
|
|---|
| 34 | class="form-control"/>
|
|---|
| 35 |
|
|---|
| 36 | <span asp-validation-for="Password"
|
|---|
| 37 | class="text-danger"></span>
|
|---|
| 38 | </div>
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 | <div class="mb-3">
|
|---|
| 42 | <label asp-for="ConfirmPassword"
|
|---|
| 43 | class="form-label"></label>
|
|---|
| 44 |
|
|---|
| 45 | <input asp-for="ConfirmPassword"
|
|---|
| 46 | class="form-control"/>
|
|---|
| 47 |
|
|---|
| 48 | <span asp-validation-for="ConfirmPassword"
|
|---|
| 49 | class="text-danger"></span>
|
|---|
| 50 | </div>
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 | <div class="mb-3">
|
|---|
| 54 | <label asp-for="ShippingAddress"
|
|---|
| 55 | class="form-label">
|
|---|
| 56 |
|
|---|
| 57 | Shipping Address
|
|---|
| 58 |
|
|---|
| 59 | </label>
|
|---|
| 60 |
|
|---|
| 61 | <input asp-for="ShippingAddress"
|
|---|
| 62 | class="form-control"/>
|
|---|
| 63 | </div>
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 | <div class="mb-3">
|
|---|
| 67 | <label asp-for="TelephoneNumber"
|
|---|
| 68 | class="form-label">
|
|---|
| 69 |
|
|---|
| 70 | Telephone Number
|
|---|
| 71 |
|
|---|
| 72 | </label>
|
|---|
| 73 |
|
|---|
| 74 | <input asp-for="TelephoneNumber"
|
|---|
| 75 | class="form-control"/>
|
|---|
| 76 | </div>
|
|---|
| 77 |
|
|---|
| 78 |
|
|---|
| 79 | <button type="submit"
|
|---|
| 80 | class="btn btn-primary">
|
|---|
| 81 |
|
|---|
| 82 | Register
|
|---|
| 83 |
|
|---|
| 84 | </button>
|
|---|
| 85 |
|
|---|
| 86 | </form>
|
|---|
| 87 |
|
|---|
| 88 | <div class="mt-3">
|
|---|
| 89 |
|
|---|
| 90 | Already have an account?
|
|---|
| 91 |
|
|---|
| 92 | <a asp-action="Login">
|
|---|
| 93 | Login
|
|---|
| 94 | </a>
|
|---|
| 95 |
|
|---|
| 96 | </div>
|
|---|
| 97 |
|
|---|
| 98 | @section Scripts
|
|---|
| 99 | {
|
|---|
| 100 | <partial name="_ValidationScriptsPartial"/>
|
|---|
| 101 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.