-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommunity.html
34 lines (32 loc) · 1.38 KB
/
community.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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Community Creation</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<h1 class="mb-4">Create a Community</h1>
<form id="communityForm">
<div class="mb-3">
<label for="communityName" class="form-label">Community Name</label>
<input type="text" class="form-control" id="communityName" required>
</div>
<div class="mb-3">
<label for="communityTopic" class="form-label">Main Topic</label>
<input type="text" class="form-control" id="communityTopic" required>
</div>
<div class="mb-3">
<label for="communityDescription" class="form-label">Description</label>
<textarea class="form-control" id="communityDescription" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create Community</button>
</form>
<h2 class="mt-5 mb-3">Existing Communities</h2>
<div id="communitiesList" class="row"></div>
</div>
<script src="community_creation.js"></script>
</body>
</html>