-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (76 loc) · 2.98 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
<!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">
<script src="https://kit.fontawesome.com/5c174a778e.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="main-u">
<!-- side bar ---- -->
<section class="left-side hidden">
<aside>
<div class="logo">
<img src="Images/1160530.png" alt="logo">
</div>
</aside>
<div class="menu">
<ul>
<li>Home</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="menumobile">
<ul>
<li> <a href="">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>
<li class="close"> <i class="fa-sharp fa-regular fa-rectangle-xmark"></i></li>
</ul>
</div>
<section class="right-side">
<nav>
<div class="toggle ">
<i class="fa-solid fa-bars"></i>
</div>
<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">
<img src="images/PassportJS.svg" alt="">
<h1>Simple, unobtrusive authentication for Node.js</h1>
<p>Passport is authentication middleware for Node.js. Extremely flexible and modular, Passport
can be unobtrusively dropped in to any Express-based web application. A comprehensive set of
strategies support authentication using a username and password, Facebook, Twitter, and
more.!</p>
</div>
<div class="white-box">
<h3>app.js — vim</h3>
<p>passport.authenticate('facebook');</p>
</div>
<div class="btn">
<p>500+ Strategies Now!</p>
<button>VIEW ALL STRATEGIES</button>
</div>
</div>
</section>
</div>
</body>
<script src="index.js"></script>
</html>