generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 97
/
code-of-conduct.html
172 lines (165 loc) · 5.69 KB
/
code-of-conduct.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
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code of Conduct</title>
<link rel="stylesheet" type="text/css" href="./css/navbar.css" />
<link rel="stylesheet" href="./css/coc.css" />
<link rel="stylesheet" href="./css/navbar-linked-pages.css" />
<link rel="icon" type="image/x-icon" href="img/icons/favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="dropdown hide">
<ul class="dropdown-list">
<li class="dropdown-link">
<button class="dropdown-item-btn" id="my-profile">My Profile</button>
</li>
<hr class="line" />
<li class="dropdown-link">
<button class="dropdown-item-btn" id="signout-option">
Sign out
</button>
</li>
</ul>
</div>
<nav>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="nav-login">
<a
class="btn-login"
href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97"
>
<button class="btn-login-text">
Sign In
<img
src="img/icons/github-logo.png"
alt="GitHub Icon"
height="15px"
width="15px"
/>
</button>
</a>
<div class="user-greet">
<div class="user-greet-msg">Hello, User!</div>
<img class="user-profile-pic" />
</div>
</div>
<ul class="nav-menu">
<li class="nav-logo-li">
<a href="https://www.realdevsquad.com/" class="logo-link">
<img
src="img/logos/RDS-logo.png"
alt="home nav logo"
height="50px"
width="50px"
/>
</a>
</li>
<li class="home-tab"><a href="http://realdevsquad.com/">Home</a></li>
<li>
<a class="active-tab" href="https://welcome.realdevsquad.com/">
Welcome
</a>
</li>
<li><a href="https://www.realdevsquad.com/events.html">Events</a></li>
<li><a href="https://members.realdevsquad.com/">Members</a></li>
<!-- TODO : uncomment when crypto page is added -->
<!-- <li><a href="https://crypto.realdevsquad.com/">Crypto</a></li> -->
<li><a href="https://status.realdevsquad.com/">Status</a></li>
<li class="nav-login-li">
<a
class="btn-login"
href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97"
>
<button class="btn-login-text">
Sign In With GitHub
<img
src="img/icons/github-logo.png"
alt="GitHub Icon"
height="15px"
width="15px"
/>
</button>
</a>
<div class="user-greet">
<div class="user-greet-msg">Hello, User!</div>
<img class="user-profile-pic" />
</div>
</li>
</ul>
</nav>
<main>
<article>
<h1 class="welcome-title">Code of Conduct at RDS</h1>
<p class="coc-header">
We are dedicated to building a positive environment that inculcates
open learning and high respect for one another. So we expect our
members to maintain a certain decorum.
</p>
<ul class="coc-list">
<li class="coc-list-elements">
No trolling of members on the group. We are here to learn and help
each other grow.
</li>
<li class="coc-list-elements">
No spamming off topic stuff. Time is the most important resource.
Lets save it in manifolds by reducing off topic content.
</li>
<li class="coc-list-elements">
Avoid Direct Messages. Do not hesitate to ask your queries on the
#support discord channel. Aids in quicker response.
</li>
<li class="coc-list-elements">
Avoid using tags @everyone and @here until it is very important.
</li>
<li class="coc-list-elements">
Google your queries before you seek help.
</li>
<li class="coc-list-elements">
When seeking help, submit the code in an easy-to-evaluate fashion.
Share a
<a href="https://codepen.io/" target="_blank" rel="nopener norefer"
>Codepen </a
>link instead of a
<a href="https://github.com/" target="_blank" rel="nopener norefer"
>Github </a
>link.
</li>
<li class="coc-list-elements">
Overall challenge yourself. Take up tasks proactively and update
your progress
</li>
<li class="coc-list-elements">
It helps to have a picture of yourself on your Discord & Github
profiles.
</li>
</ul>
</article>
</main>
<footer>
<p class="info-repo">
The contents of this website are deployed from this
<a
href="https://github.com/Real-Dev-Squad/website-welcome"
target="_blank"
rel="nopener norefer"
>
open source repository
</a>
</p>
</footer>
<script src="/js/constants.js" defer></script>
<script type="text/javascript" src="./js/login.js"></script>
<script type="text/javascript" src="./js/navbar.js"></script>
<script src="js/darkmode.js"></script>
</body>
</html>