Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Dean's Lister Application</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 20px;
- }
- form {
- max-width: 500px;
- margin: auto;
- padding: 20px;
- border: 1px solid #ccc;
- border-radius: 10px;
- background: #f9f9f9;
- }
- label {
- display: block;
- margin-bottom: 5px;
- font-weight: bold;
- }
- input[type="file"], button {
- width: 100%;
- padding: 10px;
- margin-bottom: 15px;
- border: 1px solid #ccc;
- border-radius: 5px;
- }
- button {
- background-color: #4CAF50;
- color: white;
- font-size: 16px;
- cursor: pointer;
- }
- button:hover {
- background-color: #45a049;
- }
- </style>
- </head>
- <body>
- <h1>Apply for Dean's Lister</h1>
- <form action="upload.php" method="POST" enctype="multipart/form-data">
- <label for="cor">Certificate of Registration (COR)</label>
- <input type="file" id="cor" name="COR" required>
- <label for="cog">Copy of Grades (COG)</label>
- <input type="file" id="cog" name="COG" required>
- <label for="form">Application Form</label>
- <input type="file" id="form" name="FORM" required>
- <label for="qpa">QPA Computation (.xlsx)</label>
- <input type="file" id="qpa" name="QPA" required>
- <button type="submit">Upload</button>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement