2015-08-12 02:12:09 +00:00
{{define "body"}}
< div class = "col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main" >
2015-06-15 21:49:16 +00:00
< h1 class = "page-header" >
Landing Pages
< / h1 >
2015-08-12 02:12:09 +00:00
< div id = "flashes" class = "row" > < / div >
2015-06-15 21:49:16 +00:00
< div class = "row" >
2018-10-15 15:40:57 +00:00
< button type = "button" class = "btn btn-primary" onclick = "edit(-1)" data-toggle = "modal" data-backdrop = "static"
data-target="#modal">< i class = "fa fa-plus" > < / i > New Page< / button >
2015-06-15 21:49:16 +00:00
< / div >
2015-08-12 02:12:09 +00:00
< div id = "loading" >
< i class = "fa fa-spinner fa-spin fa-4x" > < / i >
< / div >
2015-08-26 02:03:12 +00:00
< div id = "emptyMessage" class = "row" style = "display:none;" >
< div class = "alert alert-info" >
No pages created yet. Let's create one!
2015-06-15 21:49:16 +00:00
< / div >
< / div >
2015-08-12 02:12:09 +00:00
< div class = "row" >
< table id = "pagesTable" class = "table" style = "display:none;" >
< thead >
< tr >
< th > Name< / th >
< th > Last Modified Date< / th >
2016-01-17 21:27:11 +00:00
< th class = "col-md-2 no-sort" > < / th >
2015-06-15 21:49:16 +00:00
< / tr >
2015-08-12 02:12:09 +00:00
< / thead >
< tbody >
2015-06-15 21:49:16 +00:00
< / tbody >
< / table >
< / div >
< / div >
2015-08-23 20:20:28 +00:00
<!-- Modal -->
2016-02-22 11:57:03 +00:00
< div class = "modal fade" id = "modal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" >
2018-10-11 17:06:36 +00:00
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
<!-- New Template Modal -->
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" onclick = "dismiss()" > < span
aria-hidden="true">× < / span > < / button >
< h4 class = "modal-title" id = "modalLabel" > New Landing Page< / h4 >
2015-08-23 20:20:28 +00:00
< / div >
2018-10-11 17:06:36 +00:00
< div class = "modal-body" >
< div class = "row" id = "modal.flashes" > < / div >
< label class = "control-label" for = "name" > Name:< / label >
< div class = "form-group" >
< input type = "text" class = "form-control" placeholder = "Page name" id = "name" autofocus / >
2015-08-23 20:20:28 +00:00
< / div >
2016-03-19 01:19:13 +00:00
< div class = "form-group" >
2018-10-15 15:40:57 +00:00
< button class = "btn btn-danger" data-toggle = "modal" data-backdrop = "static" data-target = "#importSiteModal" > < i
class="fa fa-globe">< / i >
2018-10-11 17:06:36 +00:00
Import Site< / button >
< / div >
<!-- Nav tabs -->
< ul class = "nav nav-tabs" role = "tablist" >
< li class = "active" role = "html" > < a href = "#html" aria-controls = "html" role = "tab" data-toggle = "tab" > HTML< / a > < / li >
< / ul >
<!-- Tab panes -->
< div class = "tab-content" >
< div role = "tabpanel" class = "tab-pane active" id = "html" >
< textarea id = "html_editor" > < / textarea >
< / div >
< / div >
< div class = "checkbox checkbox-primary" >
< input id = "capture_credentials_checkbox" type = "checkbox" >
< label for = "capture_credentials_checkbox" > Capture Submitted Data < i class = "fa fa-question-circle"
data-toggle="tooltip" data-placement="right" title="If the landing page contains a form, submitted input (except passwords!) will be captured.">< / i > < / label >
< / div >
< div class = "checkbox checkbox-primary" id = "capture_passwords" >
< input id = "capture_passwords_checkbox" type = "checkbox" >
< label for = "capture_passwords_checkbox" > Capture Passwords< / label >
< div class = "alert alert-warning" >
< i class = "fa fa-exclamation-circle" > < / i > < b > Warning:< / b > Credentials are currently < b > not
encrypted< / b > . This means that captured passwords are stored in the database as cleartext.
Be careful with this!
< / div >
< / div >
< div id = "redirect_url" >
< label class = "control-label" for = "redirect_url_input" > Redirect to: < i class = "fa fa-question-circle"
data-toggle="tooltip" data-placement="right" title="This option lets you redirect the user to a page after credentials are submitted.">< / i > < / label >
< div class = "form-group" >
< input id = "redirect_url_input" class = "form-control" placeholder = "http://example.com" / >
< / div >
2016-03-19 01:19:13 +00:00
< / div >
< / div >
2018-10-11 17:06:36 +00:00
< div class = "modal-footer" >
< button type = "button" data-dismiss = "modal" class = "btn btn-default" onclick = "dismiss()" > Cancel< / button >
< button type = "button" class = "btn btn-primary" id = "modalSubmit" > Save Page< / button >
< / div >
2015-08-23 20:20:28 +00:00
< / div >
< / div >
< / div >
2015-08-24 01:58:48 +00:00
<!-- Modal -->
2016-02-22 11:57:03 +00:00
< div class = "modal fade" id = "importSiteModal" tabindex = "-1" role = "dialog" aria-labelledby = "importSiteModalLabel" >
2018-10-11 17:06:36 +00:00
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
<!-- New Template Modal -->
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title" id = "importSiteModalLabel" > Import Site< / h4 >
< / div >
< div class = "modal-body" >
< div class = "row" id = "modal.flashes" > < / div >
< label class = "control-label" for = "url" > URL:< / label >
< div class = "form-group" >
< input type = "text" class = "form-control" placeholder = "http://google.com" id = "url" autofocus / >
< / div >
< / div >
< div class = "modal-footer" >
< button type = "button" data-dismiss = "modal" class = "btn btn-default" > Cancel< / button >
< button type = "button" class = "btn btn-primary" id = "modalSubmit" onclick = "importSite()" > Import< / button >
2015-08-24 01:58:48 +00:00
< / div >
< / div >
< / div >
< / div >
2015-08-12 02:12:09 +00:00
{{end}}
{{define "scripts"}}
2017-01-08 20:35:08 +00:00
< script src = "/js/src/vendor/ckeditor/ckeditor.js" > < / script >
< script src = "/js/src/vendor/ckeditor/adapters/jquery.js" > < / script >
2018-12-30 06:02:41 +00:00
< script src = "/js/dist/app/autocomplete.min.js" > < / script >
2017-01-08 20:35:08 +00:00
< script src = "/js/dist/app/landing_pages.min.js" > < / script >
2018-10-11 17:06:36 +00:00
{{end}}