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 4/templates/admin.html

14 lines
294 B
HTML
Raw Normal View History

2023-01-02 17:15:05 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Editor</title>
</head>
<body>
<form action="/process_admin.html">
<label for="data">Data: </label><br>
<textarea name="data" rows="5" cols="50">{{contents|safe}}</textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>