-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 4.27 KB
/
index.html
File metadata and controls
97 lines (91 loc) · 4.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login | Instabug</title>
<link rel="shortcut icon" href="Images/instabug-logo-icon-color.svg" type="image/SVG" />
<link rel="stylesheet" href="CSS/style.css" />
</head>
<body id="Login-page">
<section class="Login-section">
<div class="Login-section__slider">
<div id="info" class="info">
<img src="Images/img1.svg" class="m" alt="img1" />
<h1 class="info-header">Accelerate Your entire Mobile Team Workflow</h1>
</div>
<div class="dots">
<button id="dot1" class="dot chacked"></button>
<button id="dot2" class="dot"></button>
<button id="dot3" class="dot"></button>
</div>
</div>
<div class="Login-section__login">
<div class="login-info">
<div class="icon-container">
<img class="bug-icon" src="Images/instabug-logo-icon-color.svg" alt="Instabug" />
</div>
<div class="login-container">
<div class="login-header">
<h1>Log in to Instabug</h1>
</div>
<div class="login-social-icon">
<div class="icon google">
<img src="Images/google.png" alt="google" />
<span>Google</span>
</div>
<div class="icon github">
<img src="Images/git.png" alt="github" />
<span>GitHub</span>
</div>
<div class="icon microsoft">
<img src="Images/microsoft.png" alt="microsoft" />
<span>Microsoft</span>
</div>
<div class="lines">
<span>OR</span>
</div>
</div>
<form class="loginform" id="loginform">
<div class="massage" id="massage">
<h3> Your email and/or password are incorrect </h3>
</div>
<div class="form-group">
<label for="email">Work Email</label>
<input type="email" id="email" placeholder="you@company.com" required name="email" />
</div>
<!-- Password -->
<div class="form-group">
<label for="password">Password</label>
<input
type="password"
id="password"
placeholder="8+ Characters"
required
pattern="^(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{6,}$"
title=""
/>
</div>
<input
type="button"
class="button"
value="Log in"
id="loginBtn"
onclick="Loginfunction()"
/>
<div class="otherOptions">
<div>Don't have an account? <span>Sign up</span></div>
<span>Login via SSO</span>
</div>
</form>
</div>
<div class="text">
<p>Trusted by the top companies.</p>
</div>
</div>
</div>
</section>
<script src="App.js"></script>
</body>
</html>