Spaces:
Sleeping
Sleeping
File size: 528 Bytes
e24c25f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Program</title>
</head>
<body>
<h1>Add a New Program</h1>
<form action="/addprogram" method="post">
<label for="program_name">Program Name:</label><br>
<input type="text" id="program_name" name="program_name" required><br><br>
<input type="submit" value="Add Program">
</form>
<br>
<a href="/">Back to Home</a>
</body>
</html>
|