generated from yashrajnayak/signup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitTogether Registration</title>
<link rel="icon" href="https://github.com/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="form-card">
<img src="https://avatars.githubusercontent.com/u/98106734?s=200&v=4" alt="GitTogether Logo" class="logo">
<h1>GitTogether Registration</h1>
<form id="githubForm">
<div class="input-group">
<input type="text" id="username" name="username" placeholder="Enter your GitHub username" required>
<div id="usernameError" class="error-message">Uh oh! Please enter a valid GitHub username</div>
</div>
<div class="input-group">
<label>Which GitTogether you'd like to join?</label>
<div class="radio-group" id="eventOptions">
<!-- Radio buttons will be dynamically populated -->
</div>
</div>
<button type="submit">Proceed</button>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>