PATH:
home
/
u865795251
/
domains
/
whatisnewis.com
/
public_html
/
unibiotech
/
portal
/
Editing: signup.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Create Account - Premium User System</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" /> <link rel="stylesheet" href="style.css"> </head> <body> <div class="login-container"> <div class="login-card" style="max-width: 500px;"> <div class="login-header"> <div class="brand-logo"> <span class="material-symbols-outlined">person_add</span> </div> <h1>Create an Account</h1> <p>Join our premium wholesale network today.</p> </div> <!-- Redirects to the dashboard to simulate a successful registration + login --> <form action="panel.html" method="GET"> <div class="form-row"> <div class="form-group"> <label for="fname">First Name</label> <div class="input-wrapper no-icon"> <input type="text" id="fname" placeholder="John" required> </div> </div> <div class="form-group"> <label for="lname">Last Name</label> <div class="input-wrapper no-icon"> <input type="text" id="lname" placeholder="Doe" required> </div> </div> </div> <div class="form-group"> <label for="company">Company Name (Optional)</label> <div class="input-wrapper"> <span class="material-symbols-outlined">business</span> <input type="text" id="company" placeholder="Acme Corp"> </div> </div> <div class="form-group"> <label for="email">Email Address</label> <div class="input-wrapper"> <span class="material-symbols-outlined">mail</span> <input type="email" id="email" placeholder="name@example.com" required autocomplete="email"> </div> </div> <div class="form-group"> <label for="password">Create Password</label> <div class="input-wrapper"> <span class="material-symbols-outlined">lock</span> <input type="password" id="password" placeholder="••••••••" required autocomplete="new-password"> </div> </div> <div class="form-actions" style="margin-bottom: 32px; justify-content: flex-start;"> <label class="checkbox-wrapper"> <input type="checkbox" required> <span>I agree to the <a href="#">Terms & Conditions</a></span> </label> </div> <div style="display: flex; gap: 12px; margin-top: 16px;"> <button type="button" class="btn-primary" onclick="window.location.href='panel.html'" style="flex: 1;">Signup as User</button> <button type="button" class="btn-secondary" onclick="window.location.href='admin.html'" style="flex: 1; justify-content: center; border: 1px solid var(--border-color); color: var(--text-primary);">Signup as Admin</button> </div> </form> <div class="login-footer"> Already have an account? <a href="index.html">Sign in here</a> </div> </div> </div> </body> </html>
SAVE
CANCEL