File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ namespace BNETDocs\Templates\Document; ?>
3
3
<form method="POST" action="?<?= ($ document_id ? 'id= ' . filter_var ($ document_id , FILTER_SANITIZE_FULL_SPECIAL_CHARS ) : '' )?> ">
4
4
<div class="form-group">
5
5
<label class="font-weight-bold" class="form-label" for="title">Title:</label><br/>
6
- <input class="form-control bg-dark text-light" type="text" name="title" id="title" tabindex="1" required autofocus="autofocus" value="<?= $ form_title?> "/>
6
+ <input class="border border-primary form-control bg-dark text-light" type="text" name="title" id="title" tabindex="1" required autofocus="autofocus" placeholder="Enter the document title here " value="<?= $ form_title?> "/>
7
7
</div>
8
8
<div class="form-group">
9
9
<label class="font-weight-bold" for="content">Content:</label>
10
10
<div class="custom-control custom-switch float-right">
11
11
<input class="custom-control-input" type="checkbox" name="markdown" id="markdown" tabindex="3" title="Use markdown or use raw HTML" value="1"<?= ($ form_markdown ? ' checked="checked" ' : '' )?> />
12
12
<label class="custom-control-label" for="markdown" title="Use markdown or use raw HTML">Markdown</label>
13
13
</div>
14
- <textarea class="border border-secondary form-control bg-dark text-light" name="content" id="content" tabindex="2" required style="height:200px;"><?= $ form_content?> </textarea>
14
+ <textarea class="border border-primary form-control bg-dark text-light" name="content" id="content" tabindex="2" required placeholder="Enter the document content here" style="height:200px;"><?= $ form_content?> </textarea>
15
15
</div>
16
16
<div class="form-group text-center">
17
17
<a class="btn btn-primary" href="<?= ($ document_url ?? 'javascript:history.go(-1); ' )?> " tabindex="4">Back</a>
You can’t perform that action at this time.
0 commit comments