<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<div>
<label for="dropdown">select file</label>
<select name="dropdown" id="select_file">
<option th:each="file_name: ${files}"
th:text="${file_name}"
th:value="${file_name}"></option>
</select>
<button id="opne_model" onClick="open_model()">開く</button>
</div>
<div id="container"></div>
<script src="simulator_ws.js"></script>
<script src="open_model.js"></script>
</body>
</html>