~alcinnz/bureaucromancy

ref: b48eccb144e10f6f81f361afaf06507037730eb3 bureaucromancy/form.html -rw-r--r-- 1.2 KiB
b48eccb1 — Adrian Cochrane Integrate & fix error messages; TODO: Block invalid submits 1 year, 1 month ago
                                                                                
50d1a28d Adrian Cochrane
b48eccb1 Adrian Cochrane
50d1a28d Adrian Cochrane
9014ee29 Adrian Cochrane
ac09cd81 Adrian Cochrane
043b1cde Adrian Cochrane
540319cf Adrian Cochrane
63b2d968 Adrian Cochrane
680706da Adrian Cochrane
b48eccb1 Adrian Cochrane
50d1a28d Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
  <meta encoding=utf-8 />
  <title>Test form</title>
</head>
<body>
  <form>
    <label><input type="checkbox" name="tos" checked value="yes" title="You must agree to the terms & conditions!" required />I agree to the terms &amp; conditions</label>
    <label><input type="radio" name="char" value="kaley" />Kaley Fawn</label>
    <label><input type="radio" name="char" value="horatio" />Prof Graw Horatio</label>
    <label><input type="radio" name="char" value="udo" />Udo Malaaki</label>
    <label><input type="radio" name="char" value="elgar" />Magus Elgar</label>
    <label><input type="file" name="file" />Upload a file!</label>
    <label><input type="email" name="email" />eMail</label>
    <label><input type="tel" name="tel" />Telephone</label>
    <label><input type="url" name="site" />Homepage</label>
    <label><input type="number" name="numerator" />Numerator</label>
    <label><input type="range" min="1" max="42" name="denominator" />Denominator</label>
    <label><input type="week" name="published" />Published at</label>
    <label><input type="color" name="colour" required />What is your favourite colour?</label>
  </form>
</body>
</html>