mirror of
https://github.com/mwalbeck/pushjet-webinterface.git
synced 2024-11-23 14:57:33 +00:00
14 lines
453 B
HTML
Executable File
14 lines
453 B
HTML
Executable File
{% extends "layout/service.html" %}
|
|
{% block content %}
|
|
<div>
|
|
<h3>Create Service</h3> <br>
|
|
<form id="create" class="form-inline" action="/service" method="post">
|
|
<label>Name:</label>
|
|
<input class="form-control" type="text" name="name"> <br>
|
|
<label>Icon:</label>
|
|
<input class="form-control" type="text" name="icon"> <br> <br>
|
|
<input class="btn btn-default" type="submit">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|