-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
73 lines (60 loc) · 1.28 KB
/
form.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
<html>
<head>
<style>
input[type=text]
{
width: 60%;
padding: 15px 20px;
margin: 8px 0;
box-sizing: border-box;
font-size:12pt;
}
input[type=text]:focus {
border: 3px solid #ADD8E6;
]}
input[type=password]:focus {
border: 3px solid #ADD8E6;
}
.button {
background-color: #008CBA;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
display: inline-block;
border-radius: 22px;
width:60%;
font-size: 16px;
}
.buttons{
color: white;
padding: 15px 32px;
text-align: center;
border-radius: 22px;
color:#000000;
width:60%;
font-size: 16px;
}
</style>
</head>
<body>
<form>
<input type="text" placeholder="Email or phone number"><br>
<input type="password"style="width: 60%;
padding: 12px 20px;
margin: 8px 0;font-size:12pt;"
placeholder="Password">
<br>
<a href="https://www.linkedin.com/uas/request-password-reset?trk=homepage-basic_signin-form_forgot-password-link" target="blanck" style="color:#5A5A5A;text-decoration:none;"> Forget password?</a>
<br><br>
<button class="button">Sign In</button>
<br>
<br>
<br>
<button class="buttons">Sign in with Google</button>
<br>
<br>
<button class="buttons">New to linkedin? Join now</button>
</form>
</body>
</html>