blob: 042c308df835d3a54cfddf011bb6fd32baba68d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
markup::define! {
LoginPage {
form[method="POST"] {
h1 { "Sign in with your website" }
p {
"Signing in to Kittybox might allow you to view private content "
"intended for your eyes only."
}
section {
label[for="url"] { "Your website URL" }
input[id="url", name="url", placeholder="https://example.com/"];
input[type="submit"];
}
}
}
}
|