You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1019 B
28 lines
1019 B
% layout 'standard', title => 'Dashboard', sb_active => 'dashboard';
|
|
|
|
%= include 'dashboard/_blog_nav', page => 'page-create'
|
|
|
|
<p class="mt-3 fs-4" >Create a new page!</p>
|
|
|
|
<form method="POST" action="<%= $c->url_for( 'do_dashboard_blog_page' ) %>">
|
|
<div class="mt-3 mb-3">
|
|
<label for="pagePath" class="col-sm-2 col-form-label">File Path</label>
|
|
<input type="text" class="form-control" id="pagePath" name="pagePath" value="">
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="pageHeaders" class="form-label">Page Headers</label>
|
|
<textarea class="form-control" id="pageHeaders" name="pageHeaders" rows="5"></textarea>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="pageContent" class="form-label">Page Content</label>
|
|
<textarea class="form-control" id="pageContent" name="pageContent" rows="25"></textarea>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<input type="submit" class="btn btn-primary btn-sm float-end" width="100%" value="Create Page">
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|