ghost
1 year ago
1 changed files with 0 additions and 159 deletions
@ -1,159 +0,0 @@
@@ -1,159 +0,0 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<?php $appControllerModuleHead->render() ?> |
||||
<body> |
||||
<?php $appControllerModuleHeader->render() ?> |
||||
<main> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div class="column width-100"> |
||||
<?php $appControllerModuleProfile->render() ?> |
||||
<div class="padding-16 margin-y-8 border-radius-3 background-color-night"> |
||||
<div class="margin-b-24 padding-b-16 border-bottom-default"> |
||||
<h2><?php echo _('Submit') ?></h2> |
||||
</div> |
||||
<form class="margin-t-8" name="submit" method="post" enctype="multipart/form-data" action="submit"> |
||||
<div class="margin-b-16"> |
||||
<label for="title"> |
||||
<?php echo _('Title') ?> |
||||
</label> |
||||
<sub class="opacity-0 parent-hover-opacity-09" |
||||
title="<?php echo $form->title->attribute->placeholder ?>"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16"> |
||||
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||
</svg> |
||||
</sub> |
||||
<?php foreach ($form->title->error as $errors) { ?> |
||||
<?php foreach ($errors as $error) { ?> |
||||
<div class="text-color-red margin-y-8"> |
||||
<?php echo $error ?> |
||||
</div> |
||||
<?php } ?> |
||||
<?php } ?> |
||||
<input class="width-100 margin-t-8" |
||||
type="text" |
||||
name="title" |
||||
id="title" |
||||
<?php echo $form->title->attribute->required ? 'required="required"' : false ?> |
||||
value="<?php echo $form->title->attribute->value ?>" |
||||
placeholder="<?php echo $form->title->attribute->placeholder ?>" |
||||
minlength="<?php echo $form->title->attribute->minlength ?>" |
||||
maxlength="<?php echo $form->title->attribute->maxlength ?>" /> |
||||
</div> |
||||
<div class="margin-y-8 padding-t-4"> |
||||
<label for="description"> |
||||
<?php echo _('Description') ?> |
||||
</label> |
||||
<sub class="opacity-0 parent-hover-opacity-09" |
||||
title="<?php echo $form->description->attribute->placeholder ?>"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16"> |
||||
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||
</svg> |
||||
</sub> |
||||
<?php foreach ($form->description->error as $errors) { ?> |
||||
<?php foreach ($errors as $error) { ?> |
||||
<div class="text-color-red margin-y-8"> |
||||
<?php echo $error ?> |
||||
</div> |
||||
<?php } ?> |
||||
<?php } ?> |
||||
<textarea class="width-100 margin-t-8" |
||||
name="description" |
||||
id="description" |
||||
<?php echo $form->description->attribute->required ? 'required="required"' : false ?> |
||||
placeholder="<?php echo $form->description->attribute->placeholder ?>" |
||||
minlength="<?php echo $form->description->attribute->minlength ?>" |
||||
maxlength="<?php echo $form->description->attribute->maxlength ?>"><?php echo $form->description->attribute->value ?></textarea> |
||||
</div> |
||||
<div class="margin-y-8 padding-t-4"> |
||||
<label for="keywords"> |
||||
<?php echo _('Keywords') ?> |
||||
</label> |
||||
<sub class="opacity-0 parent-hover-opacity-09" |
||||
title="<?php echo $form->keywords->attribute->placeholder ?>"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16"> |
||||
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||
</svg> |
||||
</sub> |
||||
<?php foreach ($form->keywords->error as $errors) { ?> |
||||
<?php foreach ($errors as $error) { ?> |
||||
<div class="text-color-red margin-y-8"> |
||||
<?php echo $error ?> |
||||
</div> |
||||
<?php } ?> |
||||
<?php } ?> |
||||
<textarea class="width-100 margin-t-8" |
||||
name="keywords" |
||||
<?php echo $form->keywords->attribute->required ? 'required="required"' : false ?> |
||||
placeholder="<?php echo $form->keywords->attribute->placeholder ?>" |
||||
minlength="<?php echo $form->keywords->attribute->minlength ?>" |
||||
maxlength="<?php echo $form->keywords->attribute->maxlength ?>"><?php echo $form->keywords->attribute->value ?></textarea> |
||||
</div> |
||||
<div class="margin-y-8 padding-t-4"> |
||||
<label for="image"> |
||||
<?php echo _('Images') ?> |
||||
</label> |
||||
<sub class="opacity-0 parent-hover-opacity-09" |
||||
title="<?php echo $form->image->attribute->placeholder ?>"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16"> |
||||
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||
</svg> |
||||
</sub> |
||||
<?php foreach ($form->image->error as $errors) { ?> |
||||
<?php foreach ($errors as $error) { ?> |
||||
<div class="text-color-red margin-y-8"> |
||||
<?php echo $error ?> |
||||
</div> |
||||
<?php } ?> |
||||
<?php } ?> |
||||
<input class="width-100 margin-t-8" |
||||
type="file" |
||||
multiple="multiple" |
||||
name="image" |
||||
id="image" |
||||
accept="<?php echo $form->image->attribute->accept ?>" |
||||
<?php echo $form->image->attribute->required ? 'required="required"' : false ?> /> |
||||
</div> |
||||
<div class="margin-y-8 padding-t-4"> |
||||
<label for="torrent"> |
||||
<?php echo _('Torrents') ?> |
||||
</label> |
||||
<sub class="opacity-0 parent-hover-opacity-09" |
||||
title="<?php echo $form->torrent->attribute->placeholder ?>"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16"> |
||||
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||
</svg> |
||||
</sub> |
||||
<?php foreach ($form->torrent->error as $errors) { ?> |
||||
<?php foreach ($errors as $error) { ?> |
||||
<div class="text-color-red margin-y-8"> |
||||
<?php echo $error ?> |
||||
</div> |
||||
<?php } ?> |
||||
<?php } ?> |
||||
<input class="width-100 margin-t-8" |
||||
type="file" |
||||
multiple="multiple" |
||||
name="torrent" |
||||
id="torrent" |
||||
accept="<?php echo $form->torrent->attribute->accept ?>" |
||||
<?php echo $form->torrent->attribute->required ? 'required="required"' : false ?> /> |
||||
</div> |
||||
<!-- |
||||
<div class="margin-y-8 padding-t-4"> |
||||
<label class="margin-b-16 display-block" for="magnet"><?php echo _('Magnet URL') ?></label> |
||||
<textarea class="width-100" name="magnet" id="magnet" placeholder="<?php echo _('magnet: ...') ?>"></textarea> |
||||
</div> |
||||
--> |
||||
<div class="padding-t-8 text-right"> |
||||
<input class="button-green" type="submit" value="<?php echo _('Submit') ?>" /> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<?php $appControllerModuleFooter->render() ?> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue