~alcinnz/bureaucromancy

ref: 50d1a28d6c3ed29698e5761ccb79df9a9c5b1ba2 bureaucromancy/form.html -rw-r--r-- 613 bytes
50d1a28d — Adrian Cochrane Implement typing, deletion. 1 year, 2 months ago
                                                                                
50d1a28d Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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!" />I agree to the terms & 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>
  </form>
</body>
</html>