-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllset.php
More file actions
98 lines (92 loc) · 3.6 KB
/
Allset.php
File metadata and controls
98 lines (92 loc) · 3.6 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Codeditor</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Manrope&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet">
</head>
<style type="text/css">
body{
margin: 0px;
padding: 0px;
background-image:url('hhhh.png');
background-size: 1400px;
background-repeat: no-repeat;
}
.nav-item{
margin-left: 20px;
}
.text{
text-align: center;
margin-top:150px;
}
.text p{
font-size: 320%;
font-family: 'Caveat', cursive;
}
.object{
font-size: 120%;
margin-bottom: 30px;
}
.button{
background-color: #28B463;
color:white;
text-align: center;
border:1px solid #28B463;
padding-left:15px;
padding-right:15px;
padding-top:12px;
padding-bottom:12px;
font-family: 'Roboto Mono', monospace;
font-size:100%;
}
.button:hover{
cursor: pointer;
}
</style>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top">
<a class="navbar-brand" href="#"><img src="https://cdn1.iconfinder.com/data/icons/seo-icons-5/96/Coding-512.png" width="40px" style="margin-right: 15px;">Code Collector</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item ">
<a class="nav-link" href="index.php">Home </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="Signup.php">Signup </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="Signin.php">Login </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="Verification.php">Verification</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
</ul>
</div>
</nav>
<div>
<div>
</div>
<div class="text">
<p>You have completed your account creation in <br><spam >Code Collector</spam></p>
<p>Now, Login in</p>
<div class="object">
<a href="Signin.php" style="text-decoration: none; color:#F2F3F4"><button class="button" id="button">Log in</button></a>
</div>
</div>
</div>
</body>
</html>