Advertisement
lemansky

Untitled

Nov 26th, 2021
933
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.96 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.         <title>Hello, world!</title>
  7.       <style>
  8.         body{
  9.           font-family: "Segoe UI";
  10.         }
  11.         .container{
  12.           width:1200px;
  13.           margin: 0 auto;
  14.         }
  15.         .row{
  16.           display:flex;
  17.           flex-direction: row;
  18.         }
  19.         .col-10{
  20.           flex: 0 0 auto;
  21.           width: 100%;
  22.           padding:0px 12px;
  23.         }
  24.         .text-center{
  25.           text-align:center;
  26.         }
  27.         .col-5{
  28.           flex: 0 0 auto;
  29.           width: 50%;
  30.           padding:0px 12px;
  31.         }
  32.         .col-3{
  33.           flex: 0 0 auto;
  34.           width: 33.33333333%;
  35.           padding:0px 12px;
  36.         }
  37.         .form-label{
  38.           display:block;
  39.           margin-bottom:8px;
  40.         }
  41.         .form-control{
  42.           display: block;
  43.           width: 100%;
  44.           padding: .375rem .75rem;
  45.           font-size: 1rem;
  46.           font-weight: 400;
  47.           line-height: 1.5;
  48.           color: #212529;
  49.           background-color: #fff;
  50.           background-clip: padding-box;
  51.           border: 1px solid #ced4da;
  52.           box-sizing:border-box;
  53.         }
  54.         .mt-10 {
  55.           margin-top:10px;
  56.         }
  57.         .link-primary{
  58.           color:#0a58ca;
  59.         }
  60.         .btn-primary{
  61.           background:#0a58ca;
  62.         }
  63.         .btn{
  64.           display: inline-block;
  65.           color: white;
  66.           text-align: center;
  67.           vertical-align: middle;
  68.           border: 1px solid transparent;
  69.           padding: 8px 12px;
  70.           border-radius: 4px;
  71.         }
  72.  
  73.       </style>
  74.     </head>
  75.     <body>
  76.  
  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 btn-primary" value="Потвърди">
  110.             </div>
  111.         </div>
  112.     </div>
  113.     </body>
  114. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement