-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.36 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>はむのみやTV</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<script src="https://cdn.firebase.com/js/client/2.3.2/firebase.js"></script>
<script src="https://cdn.rawgit.com/phi-jp/phina.js/v0.2.0/build/phina.js"></script>
<script src="firebase.js"></script>
<script src="game.js"></script>
<div>
<dd><label>更新履歴</label></dd>
<p>編集内容登録後</br>自動的に反映させた.</br>もう再読み込み</br>しなくて良くなったゾ</br>(2016年5月4日)</p>
</div>
<div>
<dl>
<dd><label>イベント内容</label></dd>
<p><input type='number' placeholder="会話番号" id='messageIndex'></textarea></p>
<p><textarea placeholder="文章" rows="4" id='messageText'></textarea></p>
</dl>
<dl>
<dd><label>選択肢1</label></dd>
<p><input type='text' placeholder="文章" id='choise1Input'></textarea></p>
<p><input type='number' placeholder="行き先の会話番号" id='choise1NextIndex'></textarea></p>
</dl>
<dl>
<dd><label>選択肢2</label></dd>
<p><input type='text' placeholder="文章" id='choise2Input'></textarea></p>
<p><input type='number' placeholder="行き先の会話番号" id='choise2NextIndex'></textarea></p>
</dl>
<dl>
<dd><label>選択肢3</label></dd>
<p><input type='text' placeholder="文章" id='choise3Input'></textarea></p>
<p><input type='number' placeholder="行き先の会話番号" id='choise3NextIndex'></textarea></p>
</dl>
<dl>
<dd><label>選択肢4</label></dd>
<p><input type='text' placeholder="文章" id='choise4Input'></textarea></p>
<p><input type='number' placeholder="行き先の会話番号" id='choise4NextIndex'></textarea></p>
</dl>
<dd><input type="button" value="登録" id='messageRegisterButton'></input></dd>
</div>
<div>
<dl>
<dd><label>移動できるよ</label></dd>
<p><input type='number' placeholder="会話番号" id='destinationIndex'></textarea></p>
<p><input type="button" value="移動する" id='moveButton'></input></p>
</dl>
</div>
<div>
<label id='scriptsLabel'>確認用文章</label>
</div>
</body>
</html>