加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin.html 3.37 KB
一键复制 编辑 原始数据 按行查看 历史
johnpoint 提交于 2021-02-04 15:01 . fix: button diabled
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>
NESHouse.com
</title>
<link href="https://fonts.loli.net/css?family=Press+Start+2P" rel="stylesheet">
<link href="css/bulma.min.css" rel="stylesheet" type="text/css" />
<link href="css/nes.min.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="js/alpine.min.js"></script>
<script src="js/av-live-query-min.js"></script>
<script src="js/admin.js"></script>
</head>
</html>
<body x-data="admin()">
<div class="columns is-centered">
<div class="column is-half">
<!-- header -->
<div class="header">
<h1 class="title">
NESHouse.com
</h1>
<h2>
Please share this page carefully. The users of this page have super administrator rights
</h2>
</div>
<!-- header end -->
<!-- register -->
<div class="container">
<h3 class="title">
Create Room
</h3>
<div class="register-form">
<div class="nes-field">
<label for="name_field">
Room Name
</label>
<input class="nes-input" id="name_field" type="text" x-model="roomName" />
</div>
<div class="nes-field">
<label for="name_field">
Nickname
</label>
<input class="nes-input" id="nickName" type="text" x-model="nickName" />
</div>
<button class="nes-btn is-primary mt-2" type="button" x-bind:class="{'is-disabled':roomId}"
x-on:click="createRoom()">
Create Room
</button>
</div>
</div>
<!-- register end -->
<!-- share -->
<div class="container" id="control" x-show="isShowShareArea">
<h3 class="title">
Share
</h3>
<div class="avatar">
<textarea id="textarea_field" x-model="shareText" style="min-height: 7em;"
class="nes-textarea"></textarea>
<div class="columns is-desktop">
<div class="column is-two-fifths">
<button class="nes-btn is-primary" type="button" x-on:click="copyLink">
Copy invitation link
</button>
</div>
</div>
<button class="nes-btn is-success" type="button" x-on:click="loginAsAdmin">
Log in to chat room as Administrator
</button>
</div>
</div>
<!-- share end -->
<div style="margin-top: 10px;">
Design By <a href="mailto:bestony@linux.com">Bestony</a>, Sponsored by <a
href="https://leancloud.app/">LeanCloud</a>,<a
href="https://www.agora.io/cn/?utm_source=opensource&utm_medium=refferal&utm_campaign=clubhouseB">Agora</a>
</div>
</div>
</div>
</body>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化