diff options
Diffstat (limited to 'src/guff/views')
-rw-r--r-- | src/guff/views/ecrs/test/auth.ecr | 20 | ||||
-rw-r--r-- | src/guff/views/html/test/auth.cr | 27 |
2 files changed, 47 insertions, 0 deletions
diff --git a/src/guff/views/ecrs/test/auth.ecr b/src/guff/views/ecrs/test/auth.ecr new file mode 100644 index 0000000..770e6b3 --- /dev/null +++ b/src/guff/views/ecrs/test/auth.ecr @@ -0,0 +1,20 @@ +<h1><%= h(TITLE) %></h1> + +<div class='container'> + <div class='col-md-8 col-md-offset-2'> + <div class='panel panel-default'> + <div class='panel-heading'> + <b> + <i class='fa fa-search'></i> + Auth Test + </b> + </div><!-- panel-heading --> + + <div class='panel-body'> + <p> + Auth test. + </p> + </div><!-- panel-body --> + </div><!-- panel --> + </div><!-- col-md-8 --> +</div><!-- container --> diff --git a/src/guff/views/html/test/auth.cr b/src/guff/views/html/test/auth.cr new file mode 100644 index 0000000..bdada74 --- /dev/null +++ b/src/guff/views/html/test/auth.cr @@ -0,0 +1,27 @@ +require "ecr/macros" +require "../page" + +class Guff::TestAuthHTMLView + TITLE = "Guff Auth Test" + FEATURES = %w{bootstrap font-awesome} + + def self.run(models, context : HTTP::Server::Context) + new(models).run(context) + end + + def initialize(@models : Models) + end + + def run(context) + page = PageHTMLView.new(TITLE, self.to_s) + page.add_features(FEATURES) + context.response.content_type = page.content_type + context.response.puts page + end + + def h(s : String) + HTML.escape(s || "") + end + + ECR.def_to_s("./src/guff/views/ecrs/test/auth.ecr") +end |