tmen

runnerLoginForm.html

Jan 7th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Untitled Document</title>
  6. </head>
  7.  
  8. <body>
  9. <style>
  10. body, html {
  11. height: 100%;
  12. background-color: azure;
  13. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  14. text-align: center;
  15.  
  16. }
  17. div {
  18. border: 1px solid gray;
  19. padding: 8px;
  20. }
  21. h1 {
  22. text-align: center;
  23. text-transform: uppercase;
  24. color: #4CAF50;
  25. letter-spacing: 10px;
  26. text-size: 20px;
  27. }
  28. p {
  29. text-align: center;
  30. letter-spacing: 3px;
  31. }
  32. td, th {
  33. border: 1px solid green;
  34. padding: 0.5rem;
  35. text-align: center;
  36. }
  37. table {
  38. border-collapse: collapse;
  39. }
  40. a:link, a:visited {
  41. background-color: #4CAF50;
  42. color: white;
  43. padding: 14px 25px;
  44. text-align: center;
  45. text-decoration: none;
  46. display: inline-block;
  47. }
  48. a:hover, a:active {
  49. background-color: #4CAF50;
  50. }
  51. </style>
  52. <h1>XC Attendance
  53. </h1>
  54. <h3> Login to the site:</h3>
  55. <form action="runnerLogin.php" method="get">
  56. <table align = "center" style="width:350px">
  57. <tr>
  58. <td>Enter your username:</td>
  59. <td><input type="text" name="username" class="required username error"></td>
  60. </tr><tr>
  61. <td>Password:</td>
  62. <td><input name="pwd" type="password" id="pwd" class="required"></td>
  63. </tr>
  64. </table>
  65. <input type="submit" value="Submit">
  66. </form>
  67. <br>
  68. <a href="http://times.bcp.org/webs/apps18/tanay/runnerRegister.html">No account? Register!</a>
  69. </body>
  70. </html>
Add Comment
Please, Sign In to add comment