This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2022_Stanislav_Mykhailenko/Lesson_5/Task 3/templates/editor.html
Stanislav Mykhailenko a6623ce880
Add Lesson 5 Task 3
2022-12-21 22:53:09 +02:00

15 lines
365 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Editor</title>
</head>
<body>
<form action="/process.html">
<label for="title">Title: </label><br>
<input type="text" id="title" name="title"><br>
<label for="text">Name: </label><br>
<textarea name="text" rows="5" cols="50" ></textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>