-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
81 lines (77 loc) · 3.11 KB
/
welcome.php
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
<?php
session_start();
if ((isset($_SESSION['zalogowany'])) && ($_SESSION['zalogowany']==true))
{
header('Location: loginx.php');
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-t-fit-no" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="other.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin-ext" rel="stylesheet"/>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg container-fluid" style="background-color: #12161c">
<a class="navbar-brand" href="index.php" style="color: #f0b90b">
<img
src="1x/logo3.png"
alt=""
width="30"
class="d-inline-block mr-1 align-bottom navimg"
/>
<b style="letter-spacing: 1px">BITPUMP</b>
</a>
</nav>
</header>
<div class="section">
<div class="logging">
<p>
Dziękujemy za rejestracje
</p>
<hr/>
<form action="login.php" method="POST">
<figure class="logbox" style="margin-top:5px; margin-bottom:5px;">
<a href="loginx.php">
<input data-bs-type="button" style="color:black; margin-top:45px;margin-bottom:50px;" id="click_login_submit" type="submit" class="loginbutton" value="Zaczynajmy!"/>
</a>
</figure>
</form>
</div>
</div>
<footer>
<div class="furt">
<p>
Mateusz Żak @bitpump s150001
</p>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
</body>
</html>