31 lines
No EOL
1 KiB
HTML
31 lines
No EOL
1 KiB
HTML
{{ define "content" }}
|
|
<section>
|
|
<h1>Settings</h1>
|
|
{{ if .flash }}
|
|
<p>{{ .flash }}</p>
|
|
{{ end }}
|
|
<p><a href="/manage">Manage statuses</a></p>
|
|
<form action="/settings-update" method="post">
|
|
<div class="field">
|
|
<label for="homepage">homepage</label>
|
|
<input type="text" name="homepage" id="homepage" value="{{ .Homepage }}" autocomplete="off"/>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="picture">picture URL</label>
|
|
<input type="text" name="picture" id="picture" value="{{ .Picture }}" autocomplete="off"/>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="about">about</label>
|
|
<textarea name="about" id="about" rows="20">{{ .About }}</textarea>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="style">style</label>
|
|
<textarea name="style" id="style" rows="20">{{ .Style }}</textarea>
|
|
</div>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</section>
|
|
{{ end }} |