You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Morsel - {{ name }}</title>
|
|
<link rel="stylesheet" href="/static/morsel.css" />
|
|
<link rel="stylesheet" href="/static/theme.css" />
|
|
</head>
|
|
<body>
|
|
{% include "logo.html" %}
|
|
{% include "nav.html" %}
|
|
<div class="feed_panel panel">
|
|
<h2>Settings</h2>
|
|
<form action="/apply_settings" method="POST">
|
|
<table width="75%" style="border: 1px solid #4c4c4c; margin: auto;">
|
|
<tr>
|
|
<td width="25%">
|
|
Avatar
|
|
<p><small>
|
|
Set this field to an email to use its <a class="mods" href="https://www.libravatar.org/">Libravatar</a>.
|
|
</small></p>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="libravatar" value="{{libra}}" />
|
|
<p><small>(Hint: you can also directly link an image here.</small></p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="25%">Personal Bio</td>
|
|
<td>
|
|
<textarea name="bio">{{bio}}</textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>
|
|
<input type="submit" value="Apply changes" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
{% include "nav.html" %}
|
|
</body>
|
|
</html>
|