~alcinnz/bureaucromancy

ref: 8b3bd42a37a90ba0975526566c049d7637705ba9 bureaucromancy/form.html -rw-r--r-- 613 bytes
8b3bd42a — Adrian Cochrane Add preview for text entry, multi-line support. 1 year, 2 months ago
                                                                                
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>