szurubooru/public_html/templates/comment-form.tpl

18 lines
508 B
Smarty
Raw Normal View History

2014-10-04 14:06:44 +02:00
<form class="comment-form">
2015-06-28 12:25:35 +02:00
<h1><%= title %></h1>
2014-10-04 14:06:44 +02:00
2015-06-28 12:25:35 +02:00
<div class="preview"></div>
2014-10-04 14:06:44 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row text">
<div class="input-wrapper">
<textarea name="text" cols="50" rows="3"><% if (typeof(text) !== 'undefined') { print(text) } %></textarea>
</div>
</div>
2014-10-04 14:06:44 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row">
<button type="submit" name="sender" value="preview">Preview</button>&nbsp;
<button type="submit" name="sender" value="submit">Submit</button>
</div>
2014-10-04 14:06:44 +02:00
</form>