Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Readme.md #505

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Frontend-Projects/Payment Form/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The Payment Form project is a sophisticated and user-friendly web application designed to streamline the process of accepting payments securely and efficiently.
It aims to provide a seamless payment experience for both customers and merchants, ensuring a hassle-free transaction process.
49 changes: 49 additions & 0 deletions Frontend-Projects/Payment Form/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Form </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form action="" method="get">
<h1 class="pform">Payment Form</h1>
<h2>Contact Information</h2>
<p> Name: *<input type ="text" name="name" required placeholder="Sonu Singh"></p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="male">
Female <input type="radio" name="gender" id="female">
</p>

</fieldset>
<p> Address: <textarea name="address" id="address" cols="80" rows="8" placeholder="Enter your Address"></textarea> </p>
<p>Email : *<input type="email" name="email" id="email" required placeholder="[email protected]"></p>
<p>Pincode : <input type="number" name="pincode" id="pincode" placeholder="114410"></p>
<hr>
<h2>Payment Information</h2>
<p> Card Type:
<select name="card_type" id="card_type">
<option value=""> Select Your Card Type </option>
<option value="Visa">Visa</option>
<option value="Rupay">Rupay</option>
<option value="Mastercard">Mastercard</option>
</select>

</p>
<p>
Card Number: *<input type="number" name="card_number" id="card_number" required placeholder="1234 5678 9112">
</p>
<p>
Expiration Date: *<input type="date" name="Expirationdate" id="Expirationdate" required >
</p>
<p>CVV: <input type="password" name="CVV" id="CVV" placeholder="123"></p>
<input type="submit" value="Pay Now">
</form>
</div>
</body>
</html>
Empty file.
53 changes: 53 additions & 0 deletions Frontend-Projects/Payment Form/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
* {
box-sizing: border-box;
}

body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 15px 30px;
font-size: 20px;
padding: 8px;
background-color: #79E0EE;
}

.container {
background-color: #98EECC;
padding: 5px 20px 15px 20px;
border: 2px solid black;
border-radius: 4px;
}

input[type="text"],input[type="email"],
input[type="number"],input[type="password"],
input[type="date"],select,
textarea {
width: 100%;
padding: 12px;
border: 2px solid black;
border-radius: 4px;
margin: 5px;
}

fieldset {
background-color: #98EECC;
border: 2px solid black;
}

.pform {
text-align: center;
}

input[type="submit"] {
background-color: #2CD3E1;
color: azure;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}

input[type="submit"]:hover {
background-color: lightseagreen;
}