-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpannel.php
More file actions
31 lines (31 loc) · 1.11 KB
/
pannel.php
File metadata and controls
31 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
require("check.php");
?>
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>V2ray Web Switch Local</title>
<meta charset="UTF-8">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-switch.min.css" rel="stylesheet">
<link href="bootstrap/css/button.css" rel="stylesheet">
<script src="bootstrap/js/jquery-3.2.1.min.js"></script>
<script src="bootstrap/js/bootstrap-switch.min.js"></script>
</head>
<body>
<div style="text-align:center; margin-top:100px">
<h1>V2ray Web Switch Local</h1>
<div class="switch switch-large">
<input type="checkbox" name="my-checkbox" checked/>
</div>
<div id="info" style="margin-top:10px"></div>
<a href="logout.php" class="button button-primary button-small">Logout</a>
</div>
</body>
<script src="bootstrap/js/controller.js"></script>
</html>