-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
83 lines (75 loc) · 3.79 KB
/
index.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
<?php
define('APP_RUNNING', 1);
ob_start();
session_start();
require_once 'globals.include.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>iParcel</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<?php include 'navbar.include.php'; ?>
<div class="px-4 py-5 my-5">
<div class="container">
<?php include 'confirm-email.include.php'; ?>
<h2 class="display-4 fw-bold text-center">Ship, Manage, Track, Deliver</h2>
<p class="fs-4 text-center">All in one place. You'll be able to find shipping quotes and track your packages with our user-friendly
platform all from the comfort of your home. Our online post office portal strives to process your important
packages all while making your mailing experience hassle-free!
</p>
</div>
<div class="fs-4 text-center fw-bold mt-5">
3 Easy Steps To Printing Your Shipping Label
</div>
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<div class="card shadow h-100">
<h1 class="text-center fw-bold mt-4">1</h1>
<div class="card-body">
<h5 class="card-title text-center fw-bold text-primary">Sign Up and Login</h5>
<p class="card-text">There is no fee to use iParcel. Just register an account with us to start the shipping process.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow h-100">
<h1 class="text-center fw-bold mt-4">2</h1>
<div class="card-body">
<h5 class="card-title text-center fw-bold text-primary">Enter Shipping Information</h5>
<p class="card-text">Enter your package information for our best possible quote and select some our wide range of shipping options.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow h-100">
<h1 class="text-center fw-bold mt-4">3</h1>
<div class="card-body">
<h5 class="card-title text-center fw-bold text-primary">Print and Ship</h5>
<p class="card-text">Use a label printer or a home printer to print your label to attach to the box. Drop off your package and you're done.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-5">
<div class="d-flex justify-content-center">
<a href="/register">
<button class="btn btn-primary">Register Now!</button>
</a>
</div>
</div>
</div>
<?php include 'footer.include.php'; ?>
</body>
</html>