forked from sendbird/sendbird-javascript-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (59 loc) · 2.95 KB
/
Copy pathindex.html
File metadata and controls
71 lines (59 loc) · 2.95 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="https://dxstmhyqfqr1o.cloudfront.net/favicon/Sendbird_Favicon_PNG/Sendbird_Favicon_16X16.png">
<link rel="shortcut icon" href="https://dxstmhyqfqr1o.cloudfront.net/favicon/Sendbird_Favicon_PNG/Sendbird_Favicon_16X16.png">
<link href='https://fonts.googleapis.com/css?family=Exo+2:400,900italic,900,800italic,800,700italic,700,600italic,600,500italic,500,400italic,300italic,200italic,200,100italic,100,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:400,900italic,900,800italic,800,700italic,700,600italic,600,500italic,500,400italic,300italic,200italic,200,100italic,100,300' rel='stylesheet' type='text/css'>
<!--<link rel="stylesheet" href="/static/bootstrap/bootstrap.min.css">-->
<!--<link rel="stylesheet" href="/static/css/sample-index.css">-->
<link rel="stylesheet" href="static/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="static/css/sample-index.css">
<title>Web SDK Sample</title>
</head>
<body class="sample-background">
<div class="container">
<div class="row">
<!-- top -->
<div class="index-section index-top">
<div class="text-sort text-sort--right">
<!--<img src="/static/img/logo_landing.svg">-->
<img src="static/img/logo_landing.svg">
</div>
<div class="text-sort text-sort--left">
<label class="index-title">Sample Chat</label>
</div>
</div>
<!-- user info -->
<div class="index-section index-input">
<input type="text" class="index-userid" placeholder="Enter User ID" id="user_id"> <br /> <br />
<input type="text" class="index-nickname" maxlength="12" placeholder="Enter User nickname" id="user_nickname">
<button type="button" class="index-button" id="btn_start">DONE</button>
</div>
<!-- description -->
<div class="index-section index-text">
Start chatting on Sendbird by choosing your display name.<br>
This can be changed anytime and will be shown on 1-on-1 and group messaging.
<br />
<br />
<a href="https://github.com/sendbird/SendBird-JavaScript/" class="download-sample">Download Sample</a>
</div>
<div class="index-section index-bottom">
<!--<img src="/static/img/image-landing-01.png" width="624">-->
<img src="static/img/image-landing-01.png" width="624">
</div>
</div>
</div>
<div style="text-align: center;">
<!--<img src="/static/img/image-landing-02.png" width="960">-->
<img src="static/img/image-landing-02.png" width="960">
</div>
<!--<script src="/static/js/jquery-1.11.3.min.js"></script>-->
<!--<script src="/static/js/util.js"></script>-->
<!--<script src="/static/js/index.js"></script>-->
<script src="static/js/jquery-1.11.3.min.js"></script>
<script src="static/js/util.js"></script>
<script src="static/js/index.js"></script>
</body>
</html>