-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathusers.tsx
76 lines (74 loc) · 3.1 KB
/
users.tsx
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
import React from 'react';
import DocsMain from './DocsMain';
function UsersDocs() {
return (
<div>
<DocsMain
content={
<div className="flex items-start box-border">
<div className="w-full">
<div className=" w-full sm:px-10 mb-10 text-gray-600 dark:text-slate-300 text-lg ml-0 pt-4">
<h2 className="mb-4 mt-4 text-4xl font-[800] text-primary">
Getting started
</h2>
<div className="mt-5 w-[100%] sm:w-full mb-4">
Devpulse is a semi-open platform i.e. using it, requires a
certain level of approval from the owners/managers. If you
browse the homepage, you might wonder why there is no signup
button, this is because to sign up you need an invitation.
<h3 className="m-2 mb-4 text-2xl font-bold">
Terminology to be familiar with:
</h3>
<ul className=" list-disc ml-12">
<li>
<b>Organizations</b>: each Devpulse user belongs to an
organization. The default organization is Andela. The
admin of a given organisation has the highest privilege;
they are the one in charge of managing the rest of the
users and different administrative tasks
</li>
<li>
<b>Programs</b>: each organization should have a program
that it is running.
</li>
<li>
<b>Managers:</b> each program should have managers with
different access levels. (coordinators, technical team
leads, managers)
</li>
<li>
<b>Trainees:</b> an ordinary user of the app will fall
under the role of a trainee. As a trainee, you belong to a
team, which in turn belongs to a cohort, which in turn
belongs to a program
</li>
</ul>
<h3 className="m-2 mb-4 text-2xl font-bold">
Signing up as a user
</h3>
<p>
To sign up,{' '}
<b>
<u>your org admin must send you an invite</u>
</b>
. The invitation email will contain the details of how to
sign up
</p>
<h3 className="m-2 mb-4 text-2xl font-bold">
Signing in as a user
</h3>
<p>
To sign in, go to the signin page, provide the correct name
of your organization, on the next screen enter username and
password.
</p>
</div>
</div>
</div>
</div>
}
/>
</div>
);
}
export default UsersDocs;