Guest User

Untitled

a guest
Apr 17th, 2017
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.82 KB | None | 0 0
  1. <!Doctype html>
  2. <html xmlns = "http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Login to Mobile Sotre</title>
  5. <style>
  6. a{
  7.     color: #21618C;
  8.     text-align: center;
  9.     text-decoration: none;
  10. }
  11. .box{
  12.     margin-left : 800px;
  13.     margin-top : 70px;
  14.     background-color : #FBFCFC;
  15.     box-sizing : border-box;
  16.     width : 420px;
  17.     height : 400px;
  18.     border : 1px;
  19.     padding-left : 50px;
  20.     padding-right : 10px;
  21.     padding-top : 50px;
  22.     opacity: 0.9;
  23.     border-radius : 30px;
  24.     box-shadow: 5px -5px 20px #888888;
  25.     position : fixed;
  26. }
  27. .topbar{
  28.     box-sizing : border-box;
  29.     position:fixed;
  30.     width : 1230px;
  31.     height : 50px;
  32.     box-shadow: 3px 3px 15px #888888;
  33.     background-color : #3498DB;
  34.     border-radius : 10px;
  35.     margin-left: 20px;
  36. }
  37. .bttn{
  38.     width : 200px;
  39.     height : 100px;
  40.     margin-left : 120px;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div class="topbar">
  46. <center>
  47. <font size="6" face="Comic Sans MS" color= "#EBF5FB">Welcome to Mobile-Kart</font>
  48. </center>
  49. </div>
  50. <!--<center>-->
  51. <div class="box">
  52. <form action = "login.php" method="Post">
  53. <center>
  54. <font size="6" face="Comic Sans MS" color="#1B4F72">Already a user?</font>
  55. </center>
  56. <br>
  57. <table border = "0" style="height : 130px; width : 100%;">
  58. <tr>
  59. <td><b>Username:</b> </td> <td> <input type="text" name="username" style="height:15px;width:200px;" value="<?php echo $_COOKIE["login"];?>" /></td>
  60. </tr>
  61. <tr>
  62. <td><b>Password:</b> </td> <td> <input type="password" name="password" value = "<?php echo $_COOKIE["password"];?>" style="height:15px;width:200px;"/></td>
  63. </tr>
  64. </table>
  65. <div class="bttn">
  66. <input type="image" src="Pictures\login.jpg" alt="Submit" align="center" width="120" height="60">
  67. <br><br>
  68. <a href="Register.html">Not a user? SignUp!</a>
  69. </div>
  70. </form>
  71. </div>
  72. <!--</center>-->
  73. </body>
  74. </html>
Add Comment
Please, Sign In to add comment