add custom logic for mailing form
This commit is contained in:
parent
1835ed94c4
commit
dec2178c25
|
@ -0,0 +1,5 @@
|
||||||
|
div.ccd-login-form {
|
||||||
|
max-width: 330px;
|
||||||
|
padding: 15px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
|
@ -2,6 +2,9 @@ import Widget from require "lapis.html"
|
||||||
|
|
||||||
class Hire extends Widget
|
class Hire extends Widget
|
||||||
content: =>
|
content: =>
|
||||||
|
link rel: "stylesheet", href: "/static/css/hire/main.css"
|
||||||
|
|
||||||
|
div class: "ccd-login-form", ->
|
||||||
form class: "form-signin", method: "POST", action: "/hire", ->
|
form class: "form-signin", method: "POST", action: "/hire", ->
|
||||||
input type: "hidden", name: "csrf_token", value: @csrf_token
|
input type: "hidden", name: "csrf_token", value: @csrf_token
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue