-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
10,221 additions
and
3,773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
<!doctype html> | ||
<html lang="ja"> | ||
<head> | ||
<!--meta--> | ||
<title>Rai Chat</title> | ||
<meta charset="utf-8" /> | ||
<!--responsive--> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta name="description" content="新しいチャット体験ができます。" /> | ||
<link rel="canonical" href="https://raic.tech/" /> | ||
<meta content="Rai Chat" property="og:title" /> | ||
<meta content="新しいチャット体験ができます。" property="og:description" /> | ||
<meta content="https://raic.tech" property="og:url" /> | ||
<meta content="https://raic.tech/images/profile-image.png" property="og:image" /> | ||
<meta content="#43B581" data-react-helmet="true" name="theme-color" /> | ||
|
||
<!--Stylesheet--> | ||
<link rel="stylesheet" href="/css/index.css" /> | ||
|
||
<!--Favicon--> | ||
<link rel="icon" href="/images/profile-image.png" /> | ||
|
||
<!--Script--> | ||
|
||
<script src="/js/menu.js"></script> | ||
</head> | ||
|
||
<body style="display: none"> | ||
<header></header> | ||
|
||
<section class="columns p-4 m-0"> | ||
<div class="submenu column is-4" id="settings-sidebar"></div> | ||
<div id="app-content" class="content"> | ||
<div class="field" id="app-message-container"> | ||
<div class="control"> | ||
<textarea id="app-message" class="input" style="width: 500px" placeholder="メッセージ"></textarea> | ||
<button id="app-send-message" class="button is-primary">返信</button><br /> | ||
<p id="app-message-alert" class="is-hidden"><i class="fas fa-info"></i><label></label></p> | ||
</div> | ||
</div> | ||
<h1>メッセージ</h1> | ||
<ul id="original-post"></ul> | ||
<h1>返信</h1> | ||
<ul id="app-timeline"></ul> | ||
</div> | ||
</section> | ||
|
||
<dialog id="app-message-dialog"> | ||
<div id="app-message-dialog-content" class="modal"> | ||
<div class="modal-background"></div> | ||
|
||
<div class="modal-content"> | ||
<div class="box"> | ||
<h2 id="app-message-dialog-title">2段階認証を無効にする</h2> | ||
<p id="app-message-dialog-description">パスワードと2段階認証のコードを入力して続行します。</p> | ||
|
||
<button id="app-message-dialog-button" class="is-hidden button is-danger"><i class="fas fa-check"></i>続行</button> | ||
<button | ||
onclick="document.querySelector('#app-message-dialog').close();" | ||
id="app-message-dialog-close" | ||
class="button is-primary" | ||
aria-label="close" | ||
> | ||
OK | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</dialog> | ||
|
||
<dialog id="app-report-dialog"> | ||
<div id="app-report-dialog-content" class="modal"> | ||
<div class="modal-background"></div> | ||
|
||
<div class="modal-content"> | ||
<div class="box"> | ||
<h2 id="app-report-dialog-title">メッセージを通報</h2> | ||
<p id="app-report-dialog-description"> | ||
このメッセージをどの理由で通報しますか?<br /> | ||
送信する前に、Rai Chatの利用規約を<a href="/chat/docs/tos.html">こちら</a>からご覧ください。 | ||
</p> | ||
<!--report type--> | ||
<div class="field"> | ||
<div class="control" id="app-report-dialog-type"> | ||
<h2><input type="radio" name="report-type" value="spam" checked /> スパム</h2> | ||
<p>スパム、広告、詐欺、不正なリンク、不正な画像、不正なファイルを送信している場合に選択してください。</p> | ||
<h2><input type="radio" name="report-type" value="harassment" /> 言葉と情報の発信</h2> | ||
<p> | ||
他者を傷つける言葉、差別的な言葉、暴言、性的な言葉、人の気分を害する言葉、虚偽の情報を発信している場合に選択してください。 | ||
</p> | ||
<h2><input type="radio" name="report-type" value="other" /> その他</h2> | ||
<p> | ||
その他のRai Chatの利用規約に違反している場合に選択してください。<br /> | ||
このオプションを選択した場合、報告の詳細を入力する必要があります。 | ||
</p> | ||
<h2><input type="radio" name="report-type" value="dmca" /> 著作権</h2> | ||
<p>著作権を侵害している可能性があるメッセージを報告する</p> | ||
</div> | ||
</div> | ||
|
||
<div class="box"> | ||
<h2>自分が著作権者・著作権者の正式な代理人の場合</h2> | ||
<p> | ||
<a href="/chat/docs/dmca.html">このページ</a>を使って連絡してください。早急にUpLauncher | ||
スタッフが対応させていただきます。 | ||
</p> | ||
</div> | ||
|
||
<textarea | ||
id="app-report-dialog-message" | ||
class="input" | ||
style="width: 500px; height: 100px" | ||
placeholder="詳細" | ||
></textarea | ||
><br /> | ||
|
||
<button id="app-report-dialog-button" class="is-hidden button is-danger"><i class="fas fa-check"></i>送信</button> | ||
<button | ||
onclick="document.querySelector('#app-report-dialog').close();" | ||
id="app-report-dialog-close" | ||
class="button is-primary" | ||
aria-label="close" | ||
> | ||
OK | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</dialog> | ||
|
||
<dialog id="app-edit-dialog"> | ||
<div id="app-edit-dialog-content" class="modal"> | ||
<div class="modal-background"></div> | ||
|
||
<div class="modal-content"> | ||
<div class="box"> | ||
<h2>プロフィールを編集</h2> | ||
|
||
<div class="field"> | ||
<div class="control"> | ||
<h4>プロフィール画像</h4> | ||
<input id="app-edit-picture" class="input" type="url" placeholder="画像のURL" /><br /><br /> | ||
|
||
<h4>名前</h4> | ||
<input id="app-edit-name" class="input" type="text" placeholder="あなたの名前" /><br /><br> | ||
|
||
<h4>ハンドル</h4> | ||
<input id="app-edit-handle" class="input" type="text" placeholder="あなたのハンドル" /><br /> | ||
<small>名前を変更すると、審査が終了するまでチェックマークが非表示になります。</small><br /><br /> | ||
|
||
<h4> | ||
自己紹介 | ||
<div class="tag is-warning">プレミアム</div> | ||
</h4> | ||
現在、自己紹介はプレミアムユーザーのみ使用できます。 | ||
<textarea id="app-edit-bio" disabled class="input" style="width: 500px; height: 100px" placeholder="自己紹介"></textarea><br /> | ||
<p id="app-edit-alert" class="is-hidden"><i class="fas fa-info"></i><label></label></p> | ||
</div> | ||
</div> | ||
|
||
<button id="app-edit-confirm" class="button is-primary">編集</button> | ||
<button onclick="document.querySelector('#app-edit-dialog').close();" class="button is-secondary" aria-label="close">閉じる</button> | ||
</div> | ||
</div> | ||
</div> | ||
</dialog> | ||
|
||
<footer></footer> | ||
|
||
<script src="/js/index.js"></script> | ||
<script src="/js/chat-sidebar.js"></script> | ||
<script src="/js/chat-message.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.