wikipoints/ground/views/articles/edit.php

36 lines
1.4 KiB
PHP

<div id="pageSmoothBackground" style="background-image: url(<?= $randomPoint->getImg('middle') ?>);"></div>
<div class="container" style="background-color: rgba(255,255,255, 0.8);margin-top: -10px;padding-bottom: 30px;">
<div class="row">
<div class="col-md-12">
<h1 style="text-align: right;">Редактирование статьи</h1>
<div class="coords-container">
Вернуться: <a href="/articles">к списку статей</a> / <a href="/">на карту</a>.
</div>
<div style="text-align: justify;">
<form method="POST" action="/articles/save">
<input type="hidden" name="id" value="<?= $article->id ?>" />
<div class="form-group">
<label for="articleTitle">Название статьи</label>
<input type="text" name="title" id="articleTitle" class="form-control" value="<?= $article->title ?>" placeholder="" />
</div>
<div class="form-group">
<label for="articleText">Текст статьи</label>
<textarea name="text" id="articleText" class="form-control" rows="18"><?= $article->text ?></textarea>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="allowComments" id="articleComments" <?= $article->allowComments ? 'checked' : '' ?> />Разрешить комментарии
</label>
</div>
<button type="submit" class="btn btn-default">Сохранить</button>
</form>
</div>
</div>
</div>
</div>