ustj/web/pages/login.hoon
2024-06-29 02:14:46 +07:00

26 lines
756 B
Plaintext

=< html
|%
++ html
=/ redirect-str "/forum"
;main#login-page.white
;h1.tc:"Login"
;form#form(action "/~/login", method "POST")
;p.tc: Urbit ID
;input.mono(type "text")
=name "name"
=id "name"
=placeholder "~sampel-palnet"
=required "true"
=minlength "4"
=maxlength "14"
=pattern "~((([a-z]\{6})\{1,2}-\{0,2})+|[a-z]\{3})";
;input(type "hidden", name "redirect", value redirect-str);
;button(name "eauth", type "submit"):"Login"
==
;div.tc.nudge
;p:"If you don't have an Urbit ID, click on this link to get one for free."
;a.button/"https://redhorizon.com/join/2d55b768-a5f4-45cf-a4e5-a4302e05a1f9":"Get Urbit ID"
==
==
--