-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreferences.html
92 lines (80 loc) · 2.96 KB
/
preferences.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!-- <fb:header>Preferences</fb:header> -->
<fb:dashboard>
<fb:help href="help">help</fb:help>
</fb:dashboard>
<fb:tabs>
<fb:tab-item href='http://apps.facebook.com/ctf-app/start-match/' title='Start a Match'/>
<fb:tab-item href='http://apps.facebook.com/ctf-app/open-matches/' title='Look for Open Matches'/>
<fb:tab-item href='http://apps.facebook.com/ctf-app/scoreboard/' title='Scoreboard' align='right'/>
<fb:tab-item href='http://apps.facebook.com/ctf-app/preferences/' title='Preferences' selected='true' align='right'/>
</fb:tabs>
<!--////////////////////////////////////////////////////////////<div align="center">-->
<fb:editor action="http://apps.facebook.com/ctf-app/saveprefs" labelwidth="10">
<fb:editor-text label="Team Name" name="teamName" value="userTeamName"/>
<fb:editor-custom label="Team Color">
<select name="teamColor">
<option value="0">red</option>
<option value="1">orange</option>
<option value="2">yellow</option>
<option value="3">green</option>
<option value="4">blue</option>
<option value="5">purple</option>
<option value="6">pink</option>
<option value="7">white</option>
<option value="8">black</option>
<option value="9">brown</option>
</select>
</fb:editor-custom>
<fb:editor-custom label="Individual Color">
<select name="individualColor">
<option value="0">red</option>
<option value="1">orange</option>
<option value="2">yellow</option>
<option value="3">green</option>
<option value="4">blue</option>
<option value="5">purple</option>
<option value="6">pink</option>
<option value="7">white</option>
<option value="8">black</option>
<option value="9">brown</option>
</select>
</fb:editor-custom>
<fb:editor-custom label="Number of Flags">
<select name="numberOfFlags">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9">10</option>
</select>
</fb:editor-custom>
<fb:editor-custom label="Terrain">
<select name="terrain">
<option value="0">grass</option>
<option value="1">dirt</option>
<option value="2">dirt/grass</option>
<option value="3">rocks/grass</option>
<option value="4">rocks/dirt</option>
<option value="5">trees/grass</option>
<option value="6">trees/dirt</option>
<option value="7">rocks/trees/dirt</option>
<option value="8">rocks/trees/grass</option>
</select>
</fb:editor-custom>
<fb:editor-custom label="Grid">
<select name="grid">
<option value="0">off</option>
<option value="1">on</option>
</select>
</fb:editor-custom>
<fb:editor-buttonset>
<fb:editor-button value="Reset" name="reset"/>
<fb:editor-button value="Done" name="done"/>
</fb:editor-buttonset>
</fb:editor>
<!--///////////////////////////////////////////////////////////////////////</div>-->