Advertisement
Srxon05

index.html

Sep 24th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.01 KB | None | 0 0
  1. <html>
  2.  
  3.         <head>
  4.        
  5.         <title>Admin login</title>
  6.             <style>
  7.            
  8.             h1 {
  9.                 margin: 0 auto;
  10.                 color: white;
  11.                 font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  12.             }
  13.  
  14.             p {
  15.                 font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  16.                 font-size: 20px;
  17.                 color: white;
  18.  
  19.             }
  20.            
  21.             .unos {
  22.                 font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  23.                 font-size: 20px;
  24.                 width: 25%;
  25.                 height: 50px;
  26.                 color: white;
  27.                 background-color: transparent;
  28.                 border-radius: 10px;
  29.                 border-bottom-color: lightgreen;
  30.                 border-top-color: transparent;
  31.                 border-left-color: transparent;
  32.                 border-right-color: transparent;
  33.                 border-bottom-style: groove;
  34.                 border-top-style: none;
  35.                 border-right-style: none;
  36.                 border-left-style: none;
  37.                 border-width: 6px;
  38.                 text-align: center;
  39.  
  40.             }  
  41.             button {
  42.                 width: 95px;
  43.                 height: 45px;
  44.                 border-radius: 10px;
  45.                 font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  46.                 background-color: transparent;
  47.                 border-style: groove;
  48.                 border-color: lightgreen;
  49.                 color: white;
  50.                 border-width: 3px;
  51.  
  52.                
  53.            
  54.            
  55.            
  56.            
  57.            
  58.             }
  59.            
  60.             button:hover{
  61.                 background-color: lightgreen;
  62.                 color: black;
  63.                 border-style: none;
  64.                 border-color:transparent;
  65.                
  66.             }
  67.            
  68.            
  69.            
  70.             #Login{
  71.             margin-top: 15%;
  72.            
  73.             }
  74.  
  75.             body{
  76.                 background-image: url("images/navy.png");
  77.                 background-position: center;
  78.  
  79.  
  80.  
  81.             }
  82.  
  83.  
  84.  
  85.             </style>
  86.         </head>
  87.    
  88.     <body>
  89.         <center>
  90.     <div id="Login">   
  91.        
  92.         <h1>Admin Login</h1>
  93.         <form action="\login" method="POST">
  94.         <p><b>Username :</b> <input class="unos" placeholder="Unesite Username"></input></p>
  95.         <p><b>Password :</b> <input class="unos" placeholder="Unesite Password" type="password"></input></p>
  96.         <button type="submit" name="submit"><b>Submit</b></button>
  97.         <form>
  98.        
  99.         </center>
  100.     </div>
  101.     </body>
  102. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement