-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathchannel.html
84 lines (83 loc) · 2.89 KB
/
channel.html
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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Slack Redesign</title>
<link rel="stylesheet" href="css/all.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="channel-container">
<section class="form-container">
<div class="header-wrapper">
<h1 class="top-header">
Create a channel with
<span class="icon-wrapper"><i class="fas fa-layer-group"></i></span>
+ <span class="icon-wrapper">N</span>
</h1>
</div>
<form action="." class="create-form">
<h3 class="form-header">Create a channel</h3>
<i class="fas fa-times close"></i>
<small class="brief-description"
>Channels are where your members communicate. They are best when
organized around a topic - #proj-budget, for example.</small
>
<fieldset>
<div class="form-group">
<label for="channel-name" class="label">Name</label>
<div class="form-group-control">
<input
type="text"
placeholder="e.g. iron-fist"
id="channel-name"
name="channel-name"
class="form-control prepend"
maxlength="80"
required
/>
<i class="fas fa-hashtag prepend-icon"></i>
<span class="number">80</span>
</div>
</div>
<div class="form-group">
<label for="channel-description" class="label">Description</label>
<input
type="text"
placeholder="What's this channel about?"
id="channel-description"
name="channel-description"
class="form-control"
required
/>
</div>
<div class="privacy">
<section class="privacy-wrapper">
<input
type="checkbox"
name="privacy-checkbox"
id="privacy-checkbox"
class="switch-input"
checked="checked"
/>
<label for="privacy-checkbox" class="switch-label"
>Switch</label
>
</section>
<p class="privacy-label">
Make private
<span
>When a channel is set to private, it can only be viewed or
joined by invitation.</span
>
</p>
</div>
</fieldset>
<button type="submit" class="btn btn-primary">Create</button>
</form>
</section>
</main>
</body>
</html>