Newer
Older
3D_Braille / make_newdic.html
@natto natto on 10 Nov 2018 844 bytes all_tenji_system
<!DOGTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="tenji.css">
<title>単語追加ツール</title>
</head>
<body>
<h1>新しい単語を追加しよう</h1>
<form method="POST" action="./make_string.rb">
<p>追加したい単語</p>
<input required type="text" name="tango">
<p>読み(カタカナ入力)</p>
<input required type="text" name="yomi">
<p>発音(カタカナ入力)</p>
<input required type="text" name="hatu">
<p>品詞</p>
<select name="hinsi">
  <option>名詞
  <option>動詞
</select>
<br>
<p>優先順位(数字が低いほど出る)</p>
<select name="cost">
  <option>1
  <option>2
</select>
<br>
<!--<p></p>-->
<input type="submit" value="OK">
<input type="reset" value="NG">
<a href="./tenji.html"><button type="button">点字の名刺を作成する</button></a>
</form>
</body>
</html>