-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
25 lines (22 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/js/bootstrap.bundle.min.js" integrity="sha512-i9cEfJwUwViEPFKdC1enz4ZRGBj8YQo6QByFTF92YXHi7waCqyexvRD75S5NVTsSiTv7rKWqG9Y5eFxmRsOn0A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>V2Box</title>
</head>
<body>
<div class="container p-5">
<div class="row">
<Label>config.json</Label>
<textarea name="config" id="config" cols="30" rows="10"></textarea>
<Label>server address or IP</Label>
<input type="text" id="serverAddress">
<input type="button" id="button" value="Start Xray" class="mt-5">
</div>
</div>
</body>
<script src="./renderer.js"></script>
</html>