-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregsuccess.html
More file actions
35 lines (35 loc) · 998 Bytes
/
regsuccess.html
File metadata and controls
35 lines (35 loc) · 998 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Online code editor</title>
<style>
body{
font-family: "Lucida Console", "Courier New", monospace;
}
#title{
margin: auto;
text-align: center;
padding: 20px;
padding-bottom: 20px;
background-color: #04AA6D;
color: white;
}
.box{
height: 500px;
width: 500px;
margin: auto;
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<h1 id="title">Online Code Editor</h1>
<div class="box">
<h1>Successfully Registered</h1>
<h4>now you can login! <a href="index.html">Login</a></h4>
</div>
</body>
</html>