mirror of
https://github.com/mwalbeck/pushjet-webinterface.git
synced 2024-11-23 14:57:33 +00:00
12 lines
368 B
HTML
12 lines
368 B
HTML
{% extends "layout/message.html" %}
|
|
{% block content %}
|
|
<div>
|
|
<h3>Fetch unread messages</h3>
|
|
<form id="unread" class="form-inline" action="/message" method="get">
|
|
<label>UUID:</label>
|
|
<input class="form-control" type="text" name="uuid" value=""> <br> <br>
|
|
<input class="btn btn-default" type="submit">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|