mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-11 07:27:58 +00:00
draft submit form
This commit is contained in:
parent
e560c38c1f
commit
e5a0ac92cc
139
src/app/view/theme/default/page/form/submit.phtml
Normal file
139
src/app/view/theme/default/page/form/submit.phtml
Normal file
@ -0,0 +1,139 @@
|
||||
<!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">
|
||||
<h1><?php echo _('Submit') ?></h1>
|
||||
</div>
|
||||
<form class="margin-t-8" name="submit" method="post" enctype="multipart/form-data" action="submit">
|
||||
<div class="margin-b-16">
|
||||
<label for="locale">
|
||||
<?php echo _('Content language') ?>
|
||||
</label>
|
||||
<sub class="opacity-0 parent-hover-opacity-09"
|
||||
title="<?php echo $form->locale->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>
|
||||
<select class="width-100 margin-t-8" type="text" name="locale" id="locale">
|
||||
<?php foreach ($form->locale->values as $locale) { ?>
|
||||
<?php if ($locale->active) { ?>
|
||||
<option value="<?php echo $locale->key ?>" selected="selected">
|
||||
<?php echo $locale->value ?>
|
||||
</option>
|
||||
<?php } else { ?>
|
||||
<option value="<?php echo $locale->key ?>">
|
||||
<?php echo $locale->value ?>
|
||||
</option>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</div>
|
||||
<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-16">
|
||||
<input type="checkbox" name="sensitive" id="sensitive" value="true" <?php echo $form->sensitive->attribute->value ? 'checked="checked"' : false ?> />
|
||||
<label for="sensitive">
|
||||
<?php echo _('Sensitive') ?>
|
||||
</label>
|
||||
<sub class="opacity-0 parent-hover-opacity-09"
|
||||
title="<?php echo $form->sensitive->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>
|
||||
</div>
|
||||
<div class="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
Block a user