-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b530dbf
commit d7042b8
Showing
2 changed files
with
166 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Payment Information - Nexulen</title> | ||
<link rel="stylesheet" href="payment_style.css"> | ||
</head> | ||
<body> | ||
<div class="payment-container"> | ||
<h1>Select Your Plan</h1> | ||
<form action="submit_payment.php" method="POST" class="payment-form"> | ||
<label for="name">Full Name</label> | ||
<input type="text" id="name" name="name" placeholder="Your Full Name" required> | ||
|
||
<label for="email">Email Address</label> | ||
<input type="email" id="email" name="email" placeholder="Your Email Address" required> | ||
|
||
<!-- Payment Plan Selection --> | ||
<fieldset> | ||
<legend>Choose Your Plan</legend> | ||
|
||
<div class="plan-option"> | ||
<input type="radio" id="silver-plan" name="plan" value="silver" required> | ||
<label for="silver-plan">Silver Plan - $9</label> | ||
</div> | ||
|
||
<div class="plan-option"> | ||
<input type="radio" id="platinum-plan" name="plan" value="platinum" required> | ||
<label for="platinum-plan">Platinum Plan - $19</label> | ||
</div> | ||
</fieldset> | ||
|
||
<label for="card-number">Card Number</label> | ||
<input type="text" id="card-number" name="card-number" placeholder="1234 5678 1234 5678" required> | ||
|
||
<label for="expiration">Expiration Date</label> | ||
<input type="month" id="expiration" name="expiration" required> | ||
|
||
<label for="cvv">CVV</label> | ||
<input type="text" id="cvv" name="cvv" placeholder="123" required> | ||
|
||
<button type="submit" class="submit-btn">Submit Payment</button> | ||
</form> | ||
</div> | ||
|
||
<!-- Designed by Section --> | ||
<div class="credits"> | ||
<div class="copyright text-center "> | ||
<p>© <span>Copyright</span> <strong class="px-1 sitename">Nexulean</strong> <span>All Rights Reserved</span></p> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/* General Styles */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f4; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
|
||
.payment-container { | ||
background-color: #ffffff; | ||
padding: 30px; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
width: 400px; | ||
margin: 20px auto; | ||
flex-grow: 1; | ||
} | ||
|
||
h1 { | ||
color: #333; | ||
margin-bottom: 20px; | ||
text-align: center; | ||
} | ||
|
||
.payment-form { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 15px; | ||
} | ||
|
||
label { | ||
font-size: 14px; | ||
color: #333; | ||
} | ||
|
||
input { | ||
padding: 12px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
font-size: 14px; | ||
} | ||
|
||
input:focus { | ||
border-color: #007bff; | ||
outline: none; | ||
} | ||
|
||
button { | ||
background-color: #007bff; | ||
color: white; | ||
padding: 12px; | ||
border: none; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
button:hover { | ||
background-color: #0056b3; | ||
} | ||
|
||
/* Plan options styling */ | ||
fieldset { | ||
border: 1px solid #ccc; | ||
padding: 15px; | ||
border-radius: 5px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
legend { | ||
font-weight: bold; | ||
font-size: 16px; | ||
} | ||
|
||
.plan-option { | ||
margin-bottom: 10px; | ||
} | ||
|
||
input[type="radio"] { | ||
margin-right: 10px; | ||
} | ||
|
||
label { | ||
font-size: 14px; | ||
color: #333; | ||
} | ||
|
||
/* Designed by Section */ | ||
.credits { | ||
text-align: center; | ||
margin: 20px 0; | ||
} | ||
|
||
.credits a { | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
|
||
.credits a:hover { | ||
text-decoration: underline; | ||
} | ||
|