config.add.html
963 Bytes
{% extends "layout-with-topbar.html" %}
{% block content %}
<form method="POST">
<input type="hidden" name="scope" value="{{ scope }}">
<div class="form-group">
<label for="newKeyword">
{% block label_newKeyword %}
Kata kunci
{% endblock %}
</label>
<input name="newKeyword" type="text" class="form-control" id="newKeyword" placeholder="{% block placeholder_newKeyword %}Kata kunci{% endblock %}">
</div>
<div class="form-group">
<label for="newValue">
{% block label_newValue %}
Nilai
{% endblock %}
</label>
<input name="newValue" type="text" class="form-control" id="newValue" placeholder="{% block placeholder_newValue %}Nilai{% endblock %}">
</div>
<button type="submit" class="btn btn-primary">Tambah</button>
<a class="btn btn-default" href="/config" role="button">Batal</a>
</form>
{% endblock %}