Advertisement
Ugly_Boy

Login

Jan 12th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.07 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title></title>
  6.   <style media="screen">
  7. table
  8. {
  9.   border-radius: 15px;
  10.   border: 2px solid black;
  11.   font-family: cursive;
  12.   color: black;
  13.   background: skyblue;
  14.   width: 500px;
  15. }
  16. #main {
  17.  width:400px;
  18.  height:400px;
  19.  margin:0px auto;
  20.  font-family:raleway
  21. }
  22. span {
  23.  color:red
  24. }
  25.  
  26. h2 {
  27.  background-color:#FEFFED;
  28.  text-align:center;
  29.  border-radius:10px 10px 0 0;
  30.  margin:-10px -40px;
  31.  padding:15px
  32. }
  33.  
  34. hr {
  35.  border:0;
  36.  border-bottom:1px solid #ccc;
  37.  margin:10px -40px;
  38.  margin-bottom:10px
  39. }
  40. input {
  41.  padding:5px;
  42.  margin-top:5px;
  43.  border-bottom: 2px solid grey;
  44.  border-top: skyblue;
  45.  border-left: skyblue;
  46.  border-right: skyblue;
  47.  padding-left:5px;
  48.  font-size:16px;
  49.  font-family:cursive;
  50.  background: rgba(0, 0, 0, 0);
  51.  color: black;
  52. }
  53. button
  54. {
  55.   background: black;
  56.   border: 1px solid skyblue;
  57.   border-radius: 15px;
  58.   color: skyblue;
  59.   width: 75%;
  60.   padding-bottom: 10px;
  61.   margin-bottom: 10px;
  62.   font-family: cursive;
  63.   text-align: center;
  64. }
  65.  
  66. #profile {
  67.  padding:50px;
  68.  border:1px dashed grey;
  69.  font-size:20px;
  70.  background-color:#DCE6F7
  71. }
  72.  
  73. #logout {
  74.  float:right;
  75.  padding:5px;
  76.  border:dashed 1px gray
  77. }
  78.  
  79. a {
  80.  text-decoration:none;
  81.  color:#6495ed
  82. }
  83.  
  84. i {
  85.  color:#6495ed
  86. }
  87.   </style>
  88.   </head>
  89.   <body>
  90.     <div id="main">
  91.   <form action="login.php" method="post">
  92.     <table>
  93.       <tr>
  94.         <td colspan="2"><h1><center>Login Account</center></h1></td>
  95.         <td></td>
  96.       </tr>
  97.       <tr align="center">
  98.         <td>Username</td>
  99.         <td>  <input name="Username" placeholder="Username" type="text"></td>
  100.       </tr>
  101.       <tr align="center">
  102.         <td>Password</td>
  103.         <td> <input name="Password" placeholder="Password" type="password"  > </td>
  104.       </tr>
  105.       <tr align="center">
  106.         <td> <br> </td>
  107.       </tr>
  108.       <tr align="center">
  109.         <td colspan="2"> <button type="submit" class="btn btn-primary">Login</button> </td>
  110.       </tr>
  111.     </table>
  112.   </form>
  113.  </div>
  114.   </body>
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement