diff options
Diffstat (limited to 'src/Pages/Login.cshtml')
| -rw-r--r-- | src/Pages/Login.cshtml | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/Pages/Login.cshtml b/src/Pages/Login.cshtml new file mode 100644 index 0000000..31553bb --- /dev/null +++ b/src/Pages/Login.cshtml @@ -0,0 +1,93 @@ +@page +@using Microsoft.AspNetCore.Mvc.TagHelpers +@model IOL.Fagprove.Pages.LoginModel +@{ + Layout = null; +} + +<!DOCTYPE html> +<html lang="no"> +<head> + <meta charset="utf-8"/> + <meta content="width=device-width, initial-scale=1.0" + name="viewport"/> + <partial name="Shared/_Favicons"/> + <partial name="Shared/_Stylesheets"/> + <link rel="stylesheet" href="~/styles/login.css"> + <title>Logg inn - Protekt IT</title> +</head> +<body> +<main> + <div class="ui segment"> + <form class="ui large form" + id="login-form" + onsubmit="return false;"> + <div class="ui error message" + id="error"> + </div> + @Html.AntiForgeryToken() + <div class="field"> + <div class="ui left icon input"> + <i class="user icon"></i> + <input name="username" + placeholder="E-post" + required + autocomplete="username" + type="email"> + </div> + </div> + <div class="field"> + <div class="ui left icon input"> + <i class="lock icon"></i> + <input name="password" + placeholder="Passord" + required + autocomplete="current-password" + type="password"> + </div> + </div> + <button class="ui fluid submit positive button">Logg inn</button> + <div class="ui divider"></div> + <a href="#" + id="forgot-pass-link" + title="Få nytt passord"> + Glemt passord? + </a> + </form> + </div> +</main> +<footer> + <p> + Utviklet av + <a href="https://protektit.no" + title="Gå til Protekt IT AS sine hjemmesider"> + Protekt IT AS + </a> + </p> +</footer> +<div class="ui modal mini top aligned" + id="forgot-form-modal"> + <i class="close icon"></i> + <div class="content"> + <form class="ui form" + id="forgot-form" + onsubmit="return false;"> + <div class="field"> + <div class="ui left icon input"> + <i class="user icon"></i> + <input id="forgot-email" + placeholder="E-postadresse" + type="email"> + </div> + </div> + <button class="ui fluid submit positive button" + disabled> + Send nytt passord + </button> + </form> + </div> +</div> +<partial name="Shared/_Scripts"/> +<script src="~/scripts/login.js"></script> +</body> +</html>
\ No newline at end of file |
