Advertisement
emmanuelbarrameda

Untitled

Nov 21st, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Dean's Lister Application</title>
  7.  
  8. <style>
  9.  
  10. body {
  11. font-family: Arial, sans-serif;
  12. margin: 20px;
  13. }
  14.  
  15. form {
  16. max-width: 500px;
  17. margin: auto;
  18. padding: 20px;
  19. border: 1px solid #ccc;
  20. border-radius: 10px;
  21. background: #f9f9f9;
  22. }
  23.  
  24. label {
  25. display: block;
  26. margin-bottom: 5px;
  27. font-weight: bold;
  28. }
  29.  
  30. input[type="file"], button {
  31. width: 100%;
  32. padding: 10px;
  33. margin-bottom: 15px;
  34. border: 1px solid #ccc;
  35. border-radius: 5px;
  36. }
  37.  
  38. button {
  39. background-color: #4CAF50;
  40. color: white;
  41. font-size: 16px;
  42. cursor: pointer;
  43. }
  44.  
  45. button:hover {
  46. background-color: #45a049;
  47. }
  48. </style>
  49. </head>
  50.  
  51. <body>
  52.  
  53. <h1>Apply for Dean's Lister</h1>
  54. <form action="upload.php" method="POST" enctype="multipart/form-data">
  55. <label for="cor">Certificate of Registration (COR)</label>
  56. <input type="file" id="cor" name="COR" required>
  57.  
  58. <label for="cog">Copy of Grades (COG)</label>
  59. <input type="file" id="cog" name="COG" required>
  60.  
  61. <label for="form">Application Form</label>
  62. <input type="file" id="form" name="FORM" required>
  63.  
  64. <label for="qpa">QPA Computation (.xlsx)</label>
  65. <input type="file" id="qpa" name="QPA" required>
  66.  
  67. <button type="submit">Upload</button>
  68. </form>
  69.  
  70. </body>
  71. </html>
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement