112 lines
3.2 KiB
Plaintext
112 lines
3.2 KiB
Plaintext
@using ConstructorAppUI.ViewModels
|
||
@model LoginViewModel
|
||
@{
|
||
Layout = null;
|
||
}
|
||
|
||
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<!-- Head -->
|
||
<head>
|
||
|
||
<title>PLK Construct Login</title>
|
||
|
||
<!-- Meta-Tags -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
<meta name="keywords" content="">
|
||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
|
||
|
||
<!-- //Meta-Tags -->
|
||
|
||
<link href="~/register/css/popuo-box.css" rel="stylesheet" type="text/css" media="all" />
|
||
|
||
<!-- Style -->
|
||
<link rel="stylesheet" href="~/register/css/style.css" type="text/css" media="all">
|
||
|
||
<!-- Fonts -->
|
||
<link href="//fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
|
||
<!-- //Fonts -->
|
||
|
||
</head>
|
||
<!-- //Head -->
|
||
<!-- Body -->
|
||
<body>
|
||
<div class="w3layoutscontaineragileits">
|
||
<div style="display: flex; align-items: center; justify-content: center;">
|
||
<img src="~/SeedData/Logo.png" alt="Logo" style="width: 250px; height: 100px; margin-right: 10px;" />
|
||
|
||
</div>
|
||
<h5 style="margin: 0;">Login</h5>
|
||
<br /><br />
|
||
<form method="post">
|
||
<input type="text" asp-for="UserName" placeholder="Kullanıcı Adınız" value="admin" required="">
|
||
<input type="password" asp-for="Password" placeholder="Şifreniz" value="Password123!" required="">
|
||
<span asp-validation-for="Password" class="text-danger"></span>
|
||
<br /><br />
|
||
<ul class="agileinfotickwthree">
|
||
<li>
|
||
<input type="checkbox" id="brand1" value="">
|
||
<label for="brand1"><span></span>Beni Hatırla</label>
|
||
@* <a href="/Register/Index/">Bir hesabınız yok mu?</a> *@
|
||
</li>
|
||
</ul>
|
||
@if (!ViewData.ModelState.IsValid)
|
||
{
|
||
<div class="alert alert-danger" style="color: red; text-align:center;">
|
||
@foreach (var modelError in ViewData.ModelState.Values.SelectMany(v => v.Errors))
|
||
{
|
||
<p>@modelError.ErrorMessage</p>
|
||
}
|
||
</div>
|
||
}
|
||
|
||
<input type="submit" value="Giriş">
|
||
<br />
|
||
<br />
|
||
<br />
|
||
<div class="aitssendbuttonw3ls">
|
||
<div class="copyright ml-5">
|
||
© @DateTime.Now.Year
|
||
<a href="https://polikarbilisim.com" target="_blank">
|
||
<img src="~/SeedData/pb_logo_whitebg.png" alt="Polikar Bilişim Hizmetleri Logo" style="height: 70px; vertical-align: middle;" />
|
||
</a>
|
||
|
||
<a href="https://polikarbilisim.com/"></a> | Tüm Hakları Saklıdır.
|
||
|
||
</div>
|
||
<div class="clear"></div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
|
||
<script type="text/javascript" src="~/register/js/jquery-2.1.4.min.js"></script>
|
||
|
||
<!-- pop-up-box-js-file -->
|
||
<script src="~/register/js/jquery.magnific-popup.js" type="text/javascript"></script>
|
||
<!--//pop-up-box-js-file -->
|
||
<script>
|
||
$(document).ready(function () {
|
||
$('.w3_play_icon,.w3_play_icon1,.w3_play_icon2').magnificPopup({
|
||
type: 'inline',
|
||
fixedContentPos: false,
|
||
fixedBgPos: true,
|
||
overflowY: 'auto',
|
||
closeBtnInside: true,
|
||
preloader: false,
|
||
midClick: true,
|
||
removalDelay: 300,
|
||
mainClass: 'my-mfp-zoom-in'
|
||
});
|
||
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
<!-- //Body -->
|
||
|
||
</html>
|