summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorspider@app1 <spiderr@bitweaver.org>2016-06-16 14:36:44 -0400
committerspider@app1 <spiderr@bitweaver.org>2016-06-16 14:36:44 -0400
commit42c8b074db4473c6b82776e6f96fd193069d0b90 (patch)
tree0f21552c92e3573e4b4bf64d882575f484f77542 /templates
parent5acc06556b7ffb638089e8a773cf7c8ac8ba96df (diff)
downloadwiki-42c8b074db4473c6b82776e6f96fd193069d0b90.tar.gz
wiki-42c8b074db4473c6b82776e6f96fd193069d0b90.tar.bz2
wiki-42c8b074db4473c6b82776e6f96fd193069d0b90.zip
add some missing form-control classes to create_book.tpl
Diffstat (limited to 'templates')
-rw-r--r--templates/create_book.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/create_book.tpl b/templates/create_book.tpl
index ae4aa06..365a058 100644
--- a/templates/create_book.tpl
+++ b/templates/create_book.tpl
@@ -12,16 +12,16 @@
{formfeedback error=$errors.title}
{formlabel label="Book Title" for="name"}
{forminput}
- <input type="text" name="name" id="name" size="50" maxlength="240" value="{$name}"/>
+ <input class="form-control" type="text" name="name" id="name" size="50" maxlength="240" value="{$name}"/>
{formhelp note="Enter the name of your WikiBook."}
{/forminput}
</div>
<div class="form-group">
- {formlabel label="Table of Contents<br />(optional)" for="chapters"}
+ {formlabel label="Table of Contents (optional)" for="chapters"}
{forminput}
- <textarea rows="10" cols="50" name="chapters" id="chapters">{$chapters}</textarea>
- {formhelp note="To enter the table of contents manually, you can add WikiPage names on separate lines. Pages that don't exist will be added automagically and you can edit them later."}
+ <textarea class="form-control" rows="10" name="chapters" id="chapters">{$chapters}</textarea>
+ {formhelp note="To enter the table of contents manually, you can add WikiPage names on separate lines. Pages that don't exist will be created automatically and you can edit them later."}
{/forminput}
</div>