soyuz-web/templates/edit.spy

22 lines
726 B
Plaintext
Raw Normal View History

2023-01-04 11:17:41 +11:00
<< partials/head >>
<body>
<header>
<a class="action-button" href="/">Home</a> |
<a class="action-button" href="/settings">Settings</a> |
<a class="action-button" href="/help">Help</a>
</header>
2023-01-04 11:17:41 +11:00
<section class="textarea">
<form method="post">
<textarea name="textarea" autofocus class="{{ disabled }}" {{ disabled }}>{{ message }}</textarea>
2023-01-04 11:17:41 +11:00
<input type="text" name="path" value="{{ path }}" hidden>
<section class="post-buttons">
<input class="action-button" type="submit" name="publish" value="Update" formaction="/update">
</section>
</form>
</section>
<footer>
</footer>
</body>
</html>