40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<title>爱马仕约会</title>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="form-group">
|
|
<h3 class="col-md-4 control-label">选择联系人</h3>
|
|
<div class="col-md-4">
|
|
<label for="start_number">开始联系人位置</label>
|
|
<input type="number" id="start_number" value="0"/>
|
|
<br>
|
|
<label for="start_number">结束联系人位置</label>
|
|
<input type="number" id="end_number" value="0"/>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
<div class="col-md-4">
|
|
<label name="store" for="store_selector">目标商店</label>
|
|
<select name="store_list" id="store_selector">
|
|
<option value="random">随机</option>
|
|
<option value="faubourg">Hermès Faubourg Saint-Honoré</option>
|
|
<option value="georgev">Hermès George V</option>
|
|
<option value="sevres">Hermès Sèvres</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label for="device_list">连接的手机</label>
|
|
<div id="device_list"/>
|
|
</div>
|
|
<br/>
|
|
<button id="start_book_btn">开始约会
|
|
</button>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html> |