summaryrefslogtreecommitdiff
path: root/themes/okadmin/templates/resource_new.liquid
blob: cc15637645f3323ceb4f33729bb5457b0e0871de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% include 'partials/head' %}

{% include 'partials/flash' %}

<nav class="resource-nav">
  <a href="../.." class="btn">Back</a>
</nav>

<section class="main resource resource-new">
  <h2>New {{ resource.type }}</h2>
  <form action=".." method="POST" id="resource_form">
    <input type="hidden" name="_method" value="POST">
    {% include 'partials/inputs' %}
    <label>&nbsp;</label><button type="submit" class="btn">Create</button>
    <div class="clear"></div>
  </form>
</section>

{% include 'partials/tail' %}