-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (95 loc) · 2.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<script>
//welcome page name code
//timeout code here
var a;
a = setTimeout(welpage, 200);
function welpage() {
let name;
let user = prompt("Please enter your name:");
if (user == null || user == "") {
name = "SORRY! ACCESS DENIED";
} else {
name = "Hello " + user + " You Are Not Subscribed Yet! Visit the Page As wayfarer by clicking the 'PASSTHROUGH' Button Below";
}
document.getElementById("nameprompt").innerHTML = name;
}
</script>
<style>
*{
box-sizing: border-box;
}
.bgimg{
background-image: url('s2.jpeg');
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.logincard {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
margin-top: 110px;
text-align: center;
font-family: arial;
}
.title {
color: grey;
font-size: 18px;
}
.loginbutton{
border: none;
outline: 0;
display: inline-block;
padding: 6px;
color: white;
background-color:#0e0107;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
font-weight:bold;
margin-top: -10px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
button:hover, a:hover {
opacity: 0.7;
}
.allheads,h4{
background-color:#220111;
}
mark{
color: tomato;
background-color:cornsilk;
}
.p{
color: aliceblue;
font-variant-caps: all-petite-caps;
text-shadow: #991254;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
box-shadow: 0 4px 8px 0 rgba(248, 243, 243, 0.2);
}
</style>
</head>
<body class="allheads">
<div class="p border"><p id="nameprompt"></p></div>
<div class="logincard">
<img src="../images/me.jpg" alt="USER" style="width:100%">
<div style="background-color:#991254;padding: 22px 0 0 0;">
<h1>GET IN!</h1>
<p class="title">LOGIN AS A USER</p>
<form action="index1.html">
<button class="loginbutton">PASSTHROUGH</button>
</form>
</div>
</div>
</body>
</html>