mirror of
https://github.com/miawinter98/just-short-it.git
synced 2024-11-22 08:19:54 +00:00
Added Page Titles to Login, Logout, Urls
This commit is contained in:
parent
0910cd2902
commit
e310fbf3c8
|
@ -1,5 +1,8 @@
|
|||
@page
|
||||
@model JustShortIt.Pages.LoginModel
|
||||
@{
|
||||
ViewData["Title"] = "Login";
|
||||
}
|
||||
|
||||
<div class="columns is-centered my-6 px-4">
|
||||
<form class="column is-one-third-desktop is-half-tablet is-full-mobile" method="post">
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
@page
|
||||
@model JustShortIt.Pages.LogoutModel
|
||||
@{
|
||||
ViewData["Title"] = "Logout";
|
||||
}
|
||||
|
||||
<p>How did you get here?</p>
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
@page
|
||||
@using System.Globalization
|
||||
@model JustShortIt.Pages.UrlsModel
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Urls";
|
||||
}
|
||||
|
||||
<div class="columns is-centered is-multiline my-6 px-4">
|
||||
@if (!string.IsNullOrEmpty(Model.Message)) {
|
||||
|
|
Loading…
Reference in a new issue