You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
598 B
18 lines
598 B
4 weeks ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Send Message</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Send Message</h1>
|
||
|
<form method="post" enctype="multipart/form-data">
|
||
|
<label for="message">Message:</label>
|
||
|
<textarea id="message" name="message" rows="4" cols="50" required></textarea><br><br>
|
||
|
<label for="photo">Upload Photo:</label>
|
||
|
<input type="file" id="photo" name="photo"><br><br>
|
||
|
<button type="submit">Send Message</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|