mirror of
https://github.com/godotengine/godot-asset-library.git
synced 2026-02-25 06:33:01 +03:00
21 lines
546 B
PHTML
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") ?>
|