19 lines
684 B
Plaintext
19 lines
684 B
Plaintext
doctype html
|
|
html lang="en"
|
|
head
|
|
meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"
|
|
meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"
|
|
title= application_title
|
|
/ = stylesheet_link_tag 'obtain_token/application'
|
|
/ = csrf_meta_tags
|
|
body
|
|
- if flash[:alert].present?
|
|
.alert.alert-error
|
|
a.close data-dismiss="alert" ×
|
|
div= flash[:alert]
|
|
- if flash[:notice].present?
|
|
.alert.alert-success
|
|
a.close data-dismiss="alert" ×
|
|
div= flash[:notice]
|
|
#obtain-token-container= yield
|