|
| 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>Add Business Profile - Business Information Application</title> |
| 7 | + <link rel="stylesheet" href="styles.css" /> |
| 8 | + </head> |
| 9 | + <body> |
| 10 | + <header> |
| 11 | + <div class="container"> |
| 12 | + <h1>Add Business Profile</h1> |
| 13 | + <nav> |
| 14 | + <ul> |
| 15 | + <li><a href="admin.html">Admin Dashboard</a></li> |
| 16 | + <li><a href="index.html">Home</a></li> |
| 17 | + </ul> |
| 18 | + </nav> |
| 19 | + </div> |
| 20 | + </header> |
| 21 | + <main> |
| 22 | + <div class="form-container"> |
| 23 | + <form id="add-business-form"> |
| 24 | + <label for="business-name">Business Name:</label> |
| 25 | + <input type="text" id="business-name" name="business-name" required /> |
| 26 | + |
| 27 | + <label for="business-category">Category:</label> |
| 28 | + <select id="business-category" name="business-category" required> |
| 29 | + <!-- Categories will be dynamically added here --> |
| 30 | + </select> |
| 31 | + |
| 32 | + <label for="business-city">City:</label> |
| 33 | + <select id="business-city" name="business-city" required> |
| 34 | + <!-- Cities will be dynamically added here --> |
| 35 | + </select> |
| 36 | + |
| 37 | + <label for="business-address">Address:</label> |
| 38 | + <input |
| 39 | + type="text" |
| 40 | + id="business-address" |
| 41 | + name="business-address" |
| 42 | + required |
| 43 | + /> |
| 44 | + |
| 45 | + <label for="business-contact">Contact Information:</label> |
| 46 | + <input |
| 47 | + type="text" |
| 48 | + id="business-contact" |
| 49 | + name="business-contact" |
| 50 | + required |
| 51 | + /> |
| 52 | + |
| 53 | + <button type="submit">Add Business</button> |
| 54 | + </form> |
| 55 | + </div> |
| 56 | + </main> |
| 57 | + <footer> |
| 58 | + <div class="container"> |
| 59 | + <p> |
| 60 | + © 2024 Business Information Application. All rights reserved. |
| 61 | + </p> |
| 62 | + </div> |
| 63 | + </footer> |
| 64 | + <script src="scripts.js"></script> |
| 65 | + </body> |
| 66 | +</html> |
0 commit comments