server/onyx/tpl/bootstrap/admin/import_exercices.tpl

17 lines
462 B
Smarty

{extends file="layout-nav.tpl"}
{block name=head}
<link href="/css/home.css" rel="stylesheet">
{/block}
{block name=content}
<h1>
Import d'exercices
</h1>
<form action="/exercices/import" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="inputFile">File to import:</label>
<input type="file" id="inputFile" name="inputFile">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
{/block}