-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.html
98 lines (89 loc) · 4.27 KB
/
documentation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Passport.js</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- side bar ---- -->
<div class="two-side">
<section class="left-side">
<aside>
<div class="logo">
<img src="Images/1160530.png" alt="logo">
</div>
</aside>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="features.html">Features</a></li>
li><a href="sponsar.html">Strategies</a></li>
<li><a href="sponsar.html">Sponsors</a></li>
</ul>
</div>
</section>
<div class="width">
<section class="nav-top">
<nav>
<div class="input">
<input type="text" placeholder="Search for Strategies">
</div>
<div class="icons">
<p>F</p>
<p>G</p>
<p>T</p>
</div>
</nav>
<div class="main">
<div class="upper">
<h1 >Documentation</h1>
<p>Passport is middleware for Node.js that makes it easy to implement authentication and
authorization. Whether you are building your first login page or are an expert in all things
identity, the documentation will help you understand Passport and use it in your
applications.</p>
<div class="temp">
<h2 >Tutorials</h2>
<div class="sec">
<p>Lessons that introduce the basics by building simple apps. Most useful when you are new to Passport and getting started.</p>
<ul class="docs-list">
<li>Username & Password</li>
<li>Sign In with Google</li>
<li>Sign In with Facebook</li>
<li>Email Magic Link</li>
<li>Auth0 Integration</li>
</ul>
</div>
<h2 >How-to Guides</h2>
<div class="sec">
<p>Step-by-step guides to help you accomplish a task. Most useful when you are trying to solve a specific problem.</p>
<ul class="docs-list">
<li>Username & Password</li>
</ul>
</div>
<h2 >Reference</h2>
<div class="sec">
<p>Technical descriptions of how Passport works. Most useful when you need detailed information about Passport's APIs.</p>
<ul class="docs-list">
<li>Normalized Profile</li>
</ul>
</div>
<h2 >Concepts</h2>
<div class="sec">
<p>Explanations of higher-level topics pertaining to Passport. Most useful for deepening your understanding.</p>
<ul class="docs-list">
<li>Authentication</li>
<li>API Authentication</li>
<li>OAuth 2.0</li>
</ul>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
</html>