Dashboard Temp Share Shortlinks Frames API

HTMLify

signup.html
Views: 48 | Author: karbonsites
 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sign Up - CampusConnect</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
    <div class="auth-page-wrapper">
        <div class="auth-container">
            <div class="theme-toggle-container-auth">
                <button id="theme-toggle-signup" class="theme-toggle-btn">
                    <span class="material-icons">brightness_4</span>
                </button>
            </div>
            <div class="auth-box">
                <div class="logo-auth">CampusConnect</div>
                <form id="signup-form" class="auth-form">
                    <h2>Create Your Account</h2>
                    <div class="input-group">
                        <input type="text" id="signup-username" placeholder="Username (e.g., @iit_student)" required>
                    </div>
                    <div class="input-group">
                        <input type="email" id="signup-email" placeholder="Email Address" required>
                    </div>
                    <div class="input-group">
                        <input type="password" id="signup-password" placeholder="Password" required>
                    </div>
                    <button type="submit" class="btn btn-primary btn-full">Sign Up & Connect</button>
                    <p class="auth-switch"><a href="login.html">Already have an account? Login</a></p>
                    <p class="auth-switch"><a href="index.html">Back to Home</a></p>
                </form>
            </div>
        </div>
    </div>
    <script src="script.js"></script>

  <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner">
      <span></span>
      <div>Built with <b>Karbon Sites</b></div>
  </a>
</body>
</html>