mirror of
https://github.com/mwalbeck/pushjet-webinterface.git
synced 2025-04-29 06:50:06 +00:00
13 lines
453 B
HTML
Executable file
13 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 %}
|