code from amapei

This commit is contained in:
cagette@ct8
2020-09-26 18:25:18 +00:00
parent 42fe367911
commit 72b4699871
1966 changed files with 220437 additions and 2 deletions
+32
View File
@@ -0,0 +1,32 @@
::use 'amapadmin/design.mtt'::
<h2>::_("Choose a logo")::</h2>
<div class="row">
<div class="col-md-6">
<form action="" method="POST" enctype="multipart/form-data">
<input name="image" type="file" class="btn btn-default"/>
<br/>
::_("Format : JPG, GIF or PNG"):: <br/>
<br/>
<input type="submit" value="::_("Send")::" class="btn btn-primary" />
</form>
<br/>
</div>
<div class="col-md-6" ::cond image!=null:: >
<img src="::file(image)::" class="img-thumbnail" />
</div>
</div>
::end::