-
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
16 changed files
with
4,361 additions
and
240 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,102 @@ | ||
<!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> | ||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3326621014935824" crossorigin="anonymous"></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"> | ||
<h1>プロフィール</h1> | ||
<div class="box"> | ||
<img id="app-profile-picture" src="https://pics.prcm.jp/a508a977c6fa9/84540173/png/84540173.png" width="256"> | ||
<h3 id="app-profile-username">ユーザー名</h3> | ||
<p id="app-profile-info">自己紹介</p> | ||
<div id="app-profile-edit" class="button"> | ||
<p></p><i class="far fa-edit"></i>プロフィールを編集</p> | ||
</div> | ||
</div> | ||
</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-edit-dialog"> | ||
<div id="app-edit-dialog-content" class="modal"> | ||
<div class="modal-background"></div> | ||
|
||
<div class="modal-content"> | ||
<div class="box"> | ||
<h2>プロフィールを編集</h2> | ||
<p>ここでのプロフィール編集はベータ版です。</p> | ||
|
||
<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> | ||
<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" 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-profile.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.
Oops, something went wrong.