tmen

runnerRegister.html

Jan 7th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 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. div {
  17. border: 1px solid gray;
  18. padding: 8px;
  19. }
  20. h1 {
  21. text-align: center;
  22. text-transform: uppercase;
  23. color: #4CAF50;
  24. letter-spacing: 10px;
  25. text-size: 20px;
  26. }
  27. p {
  28. text-align: center;
  29. letter-spacing: 3px;
  30. }
  31. td, th {
  32. border: 1px solid green;
  33. padding: 0.5rem;
  34. text-align: center;
  35. }
  36. table {
  37. border-collapse: collapse;
  38. }
  39. a:link, a:visited {
  40. background-color: #4CAF50;
  41. color: white;
  42. padding: 14px 25px;
  43. text-align: center;
  44. text-decoration: none;
  45. display: inline-block;
  46. }
  47. a:hover, a:active {
  48. background-color: #4CAF50;
  49. }
  50. </style>
  51. <h1>XC Attendance
  52. </h1>
  53. <h3> Register for the site:</h3>
  54. <form action="runnerRegister.php" method="get">
  55. <table align="center" style="width:100px">
  56. <tr>
  57. <td>username:</td>
  58. <td><input type="text" name="user"></td>
  59. </tr><tr>
  60. <td>password:</td>
  61. <td><input type="password" name="pass"></td>
  62. </tr>
  63. </table>
  64. <input type="submit" value="Submit">
  65. </form>
  66.  
  67.  
  68. <br><a href="http://times.bcp.org/webs/apps18/tanay/runnerLoginForm.html">Already have an account? Login!</a>
  69. </body>
  70. </html>
Add Comment
Please, Sign In to add comment