Files
godot-asset-library/templates/submit_asset.phtml
2016-08-11 12:11:34 +03:00

21 lines
546 B
PHTML

<?php include("_header.phtml") ?>
<form class="form-horizontal" action="<?php echo raw($basepath) ?>/asset" method="post">
<?php include("_csrf.phtml") ?>
<fieldset>
<!-- Form Name -->
<legend>Submit Asset</legend>
<?php include("_asset_fields.phtml") ?>
<div class="form-group">
<label class="col-md-4 control-label" for="submit"></label>
<div class="col-md-4">
<button id="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>
<?php include("_footer.phtml") ?>