You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
949 B
44 lines
949 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>抖音圣火</title>
|
|
<style>
|
|
body {
|
|
width: 200px;
|
|
padding: 10px;
|
|
}
|
|
input, button {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
margin-bottom: 10px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span class="userinfo" id="userinfo"></span>
|
|
|
|
|
|
<label for="username">账号:</label>
|
|
<input type="text" id="username" placeholder="输入账号">
|
|
|
|
<label for="password">密码:</label>
|
|
<input type="password" id="password" placeholder="输入密码">
|
|
|
|
<button id="login">登录</button>
|
|
|
|
<button id="openIncognito">打开抖音隐身窗口</button>
|
|
|
|
<label for="liveId">直播间ID:</label>
|
|
<input type="text" id="liveId" placeholder="输入直播间ID">
|
|
|
|
<button id="openLive">打开直播窗口</button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
|
|
</html>
|