21 lines
486 B
HTML
21 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Install {{ app_name }}</title>
|
|
</head>
|
|
<body>
|
|
<p>Install {{ app_name }}</p>
|
|
<form method="POST" action="/deploy">
|
|
{% for field in form %}
|
|
<div>
|
|
{{ field.label() }}
|
|
{{ field() }}
|
|
</div>
|
|
{% endfor %}
|
|
<input type="submit" value="Deploy" />
|
|
</form>
|
|
</body>
|
|
</html>
|