-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
169 lines (152 loc) · 7.61 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./Style/style.css" />
<link
rel="icon"
type="image/png"
href="./Assets/imgs/csi-icon-32.png"
/>
<title>CS Queue Message Maker</title>
</head>
<body>
<div class="custom-scale-div default-properties">
<h1 class="page-header-section">
<a class="header-EE ICARUS" target="_blank">-</a>
CS Queue Message Maker
<a class="header-EE ICARUS" target="_blank">-</a>
</h1>
<main class="page-main-section">
<div class="input-section">
<div class="section-header">Input List</div>
<textarea class="input-list" cols="30" rows="10"></textarea>
<div class="input-btn-container">
<button class="submit-input">Submit</button>
</div>
</div>
<div class="arrow-indicator">></div>
<div class="edit-section">
<div class="section-header">Edit List</div>
<div class="edit-list-container">
<div class="edit-list">
<!-- Member Structure 1
<div class="member-row">
<div class="member-info">
<div class="member-index">1</div>
<div>-</div>
<div class="member-name">فاطمه رضایی</div>
<div class="member-id">@Rezaie_f98</div>
</div>
<div class="action-btns">
<div class="action-btn add-to-end"></div>
<div class="action-btn delete-member"></div>
</div>
</div>-->
<!-- Member Structure 2
<div class="member-row">
<div class="member-info">
<div class="member-index">2</div>
<div>-</div>
<div class="member-name">فرشاد دولتیاری</div>
<div class="member-id">
@Farshad_80_and_some_more_text
</div>
</div>
<div class="action-btns">
<div class="action-btn add-to-end"></div>
<div class="action-btn delete-member"></div>
</div>
</div> -->
<!-- Add Member Structure
<form class="add-member">
<div class="add-member-inputs">
<input
type="text"
class="member-name-input"
placeholder="Full Name"
required
autocomplete="off"
/>
<input
type="text"
class="member-id-input"
placeholder="Telegram ID"
required
autocomplete="off"
/>
</div>
<button class="add-member-btn">Add</button>
</form> -->
<div class="how-to-use-container">
<h3 class="how-to-use-title">
How to Use the App:
</h3>
<div class="how-to-use-text">
To modify a list in the "CS Internship -
Queue" group, start by navigating to the
group and copying the list you want to
modify. Next, go to the "Input List" section
of the app, paste the copied list, and click
the "Submit" button. This action will
populate the "Edit List" section with your
list data.
</div>
<div class="how-to-use-text">
In the "Edit List" section, you can make the
necessary changes to the list. You have the
options to move members to the end of the
list, remove members, or add new members.
</div>
<div class="how-to-use-text">
Once you have completed the desired changes,
go to the "Output List" section and click
the "Copy" button to copy the updated list
to your clipboard. Finally, paste the
updated list back into the "CS Internship -
Queue" group.
</div>
<!-- <div class="how-to-use-text">
Happy queuing!
</div> -->
<div class="how-to-use-btn">Add Demo List</div>
<br />
</div>
</div>
</div>
</div>
<div class="arrow-indicator">></div>
<div class="output-section">
<div class="section-header">Output List</div>
<textarea
class="output-list"
cols="30"
rows="10"
disabled
></textarea>
<div class="input-btn-container">
<button class="copy-output">Copy</button>
</div>
</div>
</main>
<a
href="https://github.com/cs-internship/CS-Queue-Message-Maker"
class="page-footer-section"
target="_blank"
>∙ GitHub Repository ∙</a
>
</div>
<script type="module">
import autoAnimate from "https://cdn.jsdelivr.net/npm/@formkit/auto-animate";
autoAnimate(document.querySelector(".edit-list"));
</script>
<script src="./JS/customScaleCalc.js"></script>
<script src="./JS/index.js"></script>
<script src="./JS/addNewMember.js"></script>
<script src="./JS/convertInput.js"></script>
<script src="./JS/demoList.js"></script>
<script src="./JS/memberActionBtns.js"></script>
<script src="./JS/output.js"></script>
</body>
</html>