82 lines
3.7 KiB
Plaintext
82 lines
3.7 KiB
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
@model Backend.Models.ForgotPasswordViewModel
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>忘記密碼 | @ViewData["ProjectName"]後台管理系統</title>
|
|
<!-- base css -->
|
|
<link id="vendorsbundle" rel="stylesheet" media="screen, print" href="~/css/vendors.bundle.css">
|
|
<link id="appbundle" rel="stylesheet" media="screen, print" href="~/css/app.bundle.css">
|
|
<link id="mytheme" rel="stylesheet" media="screen, print" href="~/css/themes/cust-theme-8.css">
|
|
<link id="myskin" rel="stylesheet" media="screen, print" href="~/css/skins/skin-master.css">
|
|
<!-- Place favicon.ico in the root directory -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="~/img/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="~/img/favicon/favicon-32x32.png">
|
|
<link rel="mask-icon" href="~/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
<link rel="stylesheet" media="screen, print" href="~/css/page-login-alt.css">
|
|
|
|
<!-- Font Awesome -->
|
|
<link href="~/lib/fontawesome-free/css/all.min.css" rel="stylesheet" />
|
|
<!-- icheck bootstrap -->
|
|
<link href="~/lib/icheck-bootstrap/icheck-bootstrap.min.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="blankpage-form-field">
|
|
<div class="page-logo m-0 w-100 align-items-center justify-content-center rounded border-bottom-left-radius-0 border-bottom-right-radius-0 px-2">
|
|
<div class="w-100 page-logo-link press-scale-down d-flex align-items-center">
|
|
<img src="/img/dome.png" width="50%" aria-roledescription="logo">
|
|
<span class="page-logo-text">@ViewData["ProjectName"]後台管理系統</span>
|
|
</div>
|
|
</div>
|
|
<div class="card p-4 border-top-left-radius-0 border-top-right-radius-0">
|
|
|
|
@if (ViewBag.ErrMsg != null && ViewBag.ErrMsg != "")
|
|
{
|
|
<p class="alert alert-danger">@ViewBag.ErrMsg</p>
|
|
}
|
|
<form asp-action="ForgotPassword" method="post">
|
|
<div class="mb-3">
|
|
<div class="input-group">
|
|
<input asp-for="Email" type="email" class="form-control" placeholder="Email">
|
|
<div class="input-group-append">
|
|
<div class="input-group-text">
|
|
<span class="fas fa-envelope"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span asp-validation-for="Email" class="text-danger"></span>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<button type="submit" class="btn btn-default float-right">取得新密碼</button>
|
|
</div>
|
|
<!-- /.col -->
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="blankpage-footer text-center">
|
|
<a asp-controller="Login" asp-action="Index"><strong>返回登入</strong></a>
|
|
</div>
|
|
</div>
|
|
|
|
<video poster="~/img/backgrounds/clouds.png" id="bgvid" playsinline autoplay muted loop>
|
|
<source src="~/media/video/cc.webm" type="video/webm">
|
|
<source src="~/media/video/cc.mp4" type="video/mp4">
|
|
</video>
|
|
|
|
<!-- jQuery -->
|
|
<script src="~/lib/jquery/dist/jquery.js"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
@*<script src="~/js/adminlte.min.js"></script>*@
|
|
|
|
<script src="~/js/vendors.bundle.js"></script>
|
|
<script src="~/js/app.bundle.js"></script>
|
|
</body>
|
|
</html>
|