-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathupload.php
93 lines (78 loc) · 3.57 KB
/
upload.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
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<title>Hello, world!</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php include_once "styles.php"; ?>
<!-- WRITE MAIN CONTENT HERE -->
<body>
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<br>
<br>
<!-- START OF SECTION -->
<section id="showcase" class="py-5">
<div class="primary-overlay text-white ">
<div class="container">
<div class="row">
<div class="col-md-12 text-center ">
<h1 class="display-5 mt-5 pt-5 py-1 sab-h1">
Become a Part of us...
</h1>
<p class="sab-top-text">Upload your photos and get discovered by millions of people.</p>
</div>
</div>
</div>
</div>
</section><!-- END OF SECTION -->
<!-- START OF CONTAINER -->
<div class="container">
<div class="row">
<div class="col-md-12 text-center mt-5">
<h1>How it Works</h1>
<p class="sab-howitworks">Do you have amazing pictures that you want to share with the community? Then click on the button to upload them . They will be released under the CC0 license. You will help people to get access to beautiful photos that they can use freely.</p><br>
<a class="btn btn-lg bg-danger text-white" href="loginpage2.php">Get Started </a>
</div>
</div>
</div><!-- END OF CONTAINER -->
<!-- START OF CONTAINER FLUID -->
<center><div class="container-fluid mt-5" >
<div class="jumbotron pt-3 sab-jumbotron" >
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-5">
<img src="images/art1.jpg" height="300px" width="400px;" >
</div>
<div class="col-md-5">
<h2 class="text-left">Showcase Your Work</h2>
<p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
<div class="col-md-1">
</div>
</div>
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-5">
<img src="images/album4.png" height="300px" width="400px;" >
</div>
<div class="col-md-5">
<h2 class="text-left">Need a album of your Photos?</h2>
<p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a class="btn btn-lg bg-danger text-white" href="album-upload.php">Ready? </a>
</div>
<div class="col-md-1">
</div>
</div>
</div>
</div></center><!-- END OF CONTAINER FLUID -->
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
<?php include_once "script.php"; ?>
</body>
</html>