26 lines
663 B
HTML
26 lines
663 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Welcome</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="icon" href="data:,">
|
||
|
<style>
|
||
|
html {
|
||
|
font-family: sans-serif;
|
||
|
color: white;
|
||
|
background: seagreen linear-gradient(315deg, rgba(255,255,255,0.4), transparent);
|
||
|
}
|
||
|
body {
|
||
|
height: 100vh;
|
||
|
}
|
||
|
div {
|
||
|
margin: 1em;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome</h1>
|
||
|
<div>You have logged in successfully.</div>
|
||
|
</body>
|
||
|
</html>
|