24 lines
680 B
HTML
24 lines
680 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
<title>Settings - {{ application_name }}</title>
|
|
<meta name="generator" content="Samey {{ env!("CARGO_PKG_VERSION") }}" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Settings</h1>
|
|
<form hx-put="/settings" hx-swap="none">
|
|
<label>Application name</label>
|
|
<input
|
|
name="application_name"
|
|
type="text"
|
|
value="{{ application_name }}"
|
|
/>
|
|
<button>Submit</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|