Advertisement
EraCoder

Untitled

Apr 26th, 2018
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 4.00 KB | None | 0 0
  1. @model eraproject_site.Models.UserLoginInfo
  2.  
  3. @{
  4.     ViewBag.Title = "login";
  5. }
  6.  
  7. <!DOCTYPE html>
  8. <html lang="en">
  9. <head>
  10.     <meta charset="utf-8">
  11.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12.  
  13.     <!-- Bootstrap core CSS -->
  14.     <link href="~/Content/Admin_panel_assets/css/bootstrap.css" rel="stylesheet">
  15.     <!--external css-->
  16.     <link href="~/Content/Admin_panel_assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
  17.  
  18.     <!-- Custom styles for this template -->
  19.     <link href="~/Content/Admin_panel_assets/css/style.css" rel="stylesheet">
  20.     <link href="~/Content/Admin_panel_assets/css/style-responsive.css" rel="stylesheet">
  21.     <!--[if lt IE 9]>
  22.       <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  23.       <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  24.     <![endif]-->
  25. </head>
  26.  
  27. <body>
  28.     <div id="login-page">
  29.         <div class="container">
  30.             <form class="form-login" action="/AdminPanel/SignIn" method="post">
  31.                 <h2 class="form-login-heading">Войти в Админ панель</h2>
  32.                 <div class="login-wrap">
  33.                     <input type="text" class="form-control" name="login" placeholder="Имя пользователя" autofocus>
  34.                     <br>
  35.                     <input type="password" class="form-control" name="password" placeholder="Пароль">
  36.                     <label class="checkbox">
  37.                         <span style="display: none;" class="pull-right">
  38.                             <a data-toggle="modal" href="login.html#myModal"> Забыл пароль? :(</a>
  39.  
  40.                         </span>
  41.                     </label>
  42.                     <button class="btn btn-theme btn-block" type="submit"><i class="fa fa-lock"></i> Войти</button>
  43.                     <hr>
  44.                     <div class="registration">
  45.                         Нет аккаунта?<br />
  46.                         @Html.ActionLink("Создать", "Registration", "AdminPanel")
  47.                     </div>
  48.  
  49.                 </div>
  50.             </form>
  51.                 <!-- Modal -->
  52.                 <div aria-hidden="true" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" id="myModal" class="modal fade">
  53.                     <div class="modal-dialog">
  54.                         <div class="modal-content">
  55.                             <div class="modal-header">
  56.                                 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  57.                                 <h4 class="modal-title">Забыл пароль? :(</h4>
  58.                             </div>
  59.                             <div class="modal-body">
  60.                                 <p>Введите ваш e-mail адресс для востановления пароля</p>
  61.                                 <input type="text" name="email" placeholder="Email" autocomplete="off" class="form-control placeholder-no-fix">
  62.  
  63.                             </div>
  64.                             <div class="modal-footer">
  65.                                 <button data-dismiss="modal" class="btn btn-default" type="button">Отмена</button>
  66.                                 <button class="btn btn-theme" type="button">Востановить</button>
  67.                             </div>
  68.                         </div>
  69.                     </div>
  70.                 </div>
  71.                 <!-- modal -->
  72.  
  73.            
  74.  
  75.         </div>
  76.     </div>
  77.  
  78.     <!-- js placed at the end of the document so the pages load faster -->
  79.     <script src="~/Content/Admin_panel_assets/js/jquery.js"></script>
  80.     <script src="~/Content/Admin_panel_assets/js/bootstrap.min.js"></script>
  81.     <script type="text/javascript" src="~/Content/Admin_panel_assets/js/jquery.backstretch.min.js"></script>
  82.     <script>
  83.         $.backstretch("../../Content/Admin_panel_assets/img/login-bg.jpg", { speed: 500 });
  84.     </script>
  85.  
  86.  
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement