summaryrefslogtreecommitdiffstats
path: root/data/templates/products/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/products/index.html')
-rw-r--r--data/templates/products/index.html22
1 files changed, 12 insertions, 10 deletions
diff --git a/data/templates/products/index.html b/data/templates/products/index.html
index d80adbd..5e432c0 100644
--- a/data/templates/products/index.html
+++ b/data/templates/products/index.html
@@ -10,15 +10,17 @@
</table>
<div id="newproduct" style="display: {{{NEWPRODUCT}}};">
- <form action="/products/new" class="form-horizontal">
- <legend>New Product</legend>
- <input class="input-medium" name="id" type="number" min="0" placeholder="EAN" />
- <input class="input-medium" name="name" type="text" placeholder="Name" />
- <select name="category" title="Category">
- {{{CATEGORIES}}}
- </select>
- <input class="input-medium" name="memberprice" type="number" step="0.01" min="0.01" placeholder="Memberprice" />
- <input class="input-medium" name="guestprice" type="number" step="0.01" min="0.01" placeholder="Guestprice" />
- <button type="submit" class="btn btn-primary"><i class="icon-plus"></i></button>
+ <legend>New Product</legend>
+ <form action="/products/new" class="form-inline">
+ <div class="form-group">
+ <input class="form-control" name="id" type="number" min="0" placeholder="EAN" />
+ <input class="form-control" name="name" type="text" placeholder="Name" />
+ <select class="form-control" name="category" title="Category">
+ {{{CATEGORIES}}}
+ </select>
+ <input class="form-control" name="memberprice" type="number" step="0.01" min="0.01" placeholder="Memberprice" />
+ <input class="form-control" name="guestprice" type="number" step="0.01" min="0.01" placeholder="Guestprice" />
+ <button type="submit" class="form-control btn btn-primary"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
+ </div>
</form>
</div>