You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
523 B
32 lines
523 B
::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::
|