add_region.html
<!DOCTYPE html> <html> <head> <title>Add Region</title> </head> <body> <h1>Add Region</h1> <form method="post"> <label for="name">Region Name:</label> <input type="text" id="name" name="name" required> <button type="submit">Add</button> </form> </body> </html>
Leave a Comment