Files
puppeteerjs/index.html
T
2022-09-14 16:46:54 +02:00

24 lines
794 B
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>
<script src="./renderer.js"></script>
</head>
<body>
<input type="number" id="start_number">开始联系人位置</input>
<input type="number" id="end_number">结束联系人位置</input>
<label name="store">目标商店</label>
<select name="store_list" id="store_selector">
<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>
<br/>
<button id="start_book_btn">开始约会
</button>
</body>
</html>