-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (88 loc) · 3.21 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jin - Your Slack Bot</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 100%;
text-align: center;
}
h1 {
color: #333;
}
p {
color: #666;
line-height: 1.6;
}
.feedback-form {
margin-top: 20px;
}
input[type="text"],
input[type="email"],
textarea {
width: calc(100% - 20px);
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Meet Jin</h1>
<p>Jin is your friendly Slack bot designed to help you manage your tasks and interactions within Slack. With Jin, you can keep track of your messages, manage your to-do lists, and more!</p>
<p>Here are some commands you can use with Jin:</p>
<ul>
<li><strong>/ping:</strong> Check if Jin is active in your channel.</li>
<li><strong>/help:</strong> Get a list of available commands.</li>
<li><strong>/message-count:</strong> See how many messages you've sent in the channel.</li>
<li><strong>/previous-messages:</strong> View your previous messages in the channel.</li>
<li><strong>/add [item]:</strong> Add an item to your list.</li>
<li><strong>/list:</strong> List all items in your list.</li>
<li><strong>/find [item]:</strong> Find an item in your list.</li>
<li><strong>/remove [item]:</strong> Remove an item from your list.</li>
<li><strong>/clear:</strong> Clear all items from your list.</li>
<li><strong>/update [item] [new_item]:</strong> Update an existing item to a new one.</li>
</ul>
<div class="feedback-form">
<h2>Feedback</h2>
<form action="mailto:yeonholee50@gmail.com" method="post" enctype="text/plain">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="feedback" rows="4" placeholder="Your Feedback" required></textarea>
<button type="submit">Send Feedback</button>
</form>
</div>
</div>
</body>
</html>