Advertisement
lemansky

Untitled

Nov 25th, 2021
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.07 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> -->
  7.         <title>Hello, world!</title>
  8.       <style>
  9.         body{
  10.           font-family: "Segoe UI";
  11.         }
  12.         .container{
  13.           width:1200px;
  14.           margin: 0 auto;
  15.         }
  16.         .row{
  17.           display:flex;
  18.           flex-direction: row;
  19.         }
  20.         .col-10{
  21.           flex: 0 0 auto;
  22.           width: 100%;
  23.           padding:0px 12px;
  24.         }
  25.         .text-center{
  26.           text-align:center;
  27.         }
  28.         .col-5{
  29.           flex: 0 0 auto;
  30.           width: 50%;
  31.           padding:0px 12px;
  32.         }
  33.         .col-3{
  34.           flex: 0 0 auto;
  35.           width: 33.33333333%;
  36.           padding:0px 12px;
  37.         }
  38.         .form-label{
  39.           display:block;
  40.           margin-bottom:8px;
  41.         }
  42.         .form-control{
  43.           display: block;
  44.           width: 100%;
  45.           padding: .375rem .75rem;
  46.           font-size: 1rem;
  47.           font-weight: 400;
  48.           line-height: 1.5;
  49.           color: #212529;
  50.           background-color: #fff;
  51.           background-clip: padding-box;
  52.           border: 1px solid #ced4da;
  53.           box-sizing:border-box;
  54.         }
  55.         .mt-10 {
  56.           margin-top:10px;
  57.         }
  58.         .link-primary{
  59.           color:#0a58ca;
  60.         }
  61.         .btn-primary{
  62.           background:#0a58ca;
  63.         }
  64.         .btn{
  65.           display: inline-block;
  66.           color: white;
  67.           text-align: center;
  68.           vertical-align: middle;
  69.           border: 1px solid transparent;
  70.           padding: 8px 12px;
  71.           border-radius: 4px;
  72.         }
  73.  
  74.       </style>
  75.     </head>
  76.     <body>
  77.     <div class="container">
  78.         <div class="row text-center">
  79.             <div class="col-10">
  80.                 <h1>Вход в системата</h1>
  81.             </div>
  82.         </div>
  83.         <div class="row">
  84.             <div class="col-5">
  85.                 <label for="" class="form-label">Имейл</label>
  86.                 <input type="email" class="form-control" placeholder="Text">
  87.             </div>
  88.             <div class="col-5">
  89.                 <label for="" class="form-label">Парола</label>
  90.                 <input type="password" class="form-control" placeholder="Text">
  91.             </div>
  92.         </div>
  93.         <div class="row text-center mt-10">
  94.             <div class="col-3">
  95.                 <div>
  96.                     <input type="checkbox">
  97.                     <label>Не ме отписвай автоматично</label>
  98.                 </div>
  99.             </div>
  100.             <div class="col-3">
  101.                 <a href="#" class="link-primary">Нямате профил? Регистрирайте се</a>
  102.             </div>
  103.             <div class="col-3">
  104.                 <a href="#" class="link-primary">Забравена парола</a>
  105.             </div>
  106.       </div>
  107.       <div class="row text-center mt-10">
  108.             <div class="col-10">
  109.                 <input type="submit" class="btn-primary btn" value="Потвърди">
  110.             </div>
  111.         </div>
  112.     </div>
  113.     </body>
  114. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement