-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcard.html
147 lines (141 loc) · 4.27 KB
/
card.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Card Display</title>
<style>
/* General styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f9f9f9;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
text-align: center;
}
/* Form styles */
#inputContainer {
margin-bottom: 20px;
}
#cardContainer {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.input-box {
background-color: #fff;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
textarea {
width: calc(100% - 20px);
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button[type="submit"] {
background-color: #4caf50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button[type="submit"]:hover {
background-color: #45a049;
}
/* Card styles */
.card {
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card h3 {
margin-top: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Create a Card</h1>
<div id="inputContainer" class="input-box">
<form id="cardForm">
<label for="title">Title:</label>
<input type="text" id="title" name="title" required />
<label for="description">Description:</label>
<textarea id="description" name="description" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
<h2>Cards</h2>
<div id="cardContainer"></div>
</div>
<script>
const databaseURL = " < Please Insert Your Unique Database URL ";
const cardsRef = "cards.json";
// Listen for form submission
const form = document.getElementById("cardForm");
form.addEventListener("submit", (e) => {
e.preventDefault();
const title = document.getElementById("title").value;
const description = document.getElementById("description").value;
// Push the new card to the database
fetch(`${databaseURL}${cardsRef}`, {
method: "POST",
body: JSON.stringify({ title, description }),
})
.then(() => {
// Clear the form inputs
document.getElementById("title").value = "";
document.getElementById("description").value = "";
fetchCards();
})
.catch((error) => console.error("Error:", error));
});
function fetchCards() {
fetch(`${databaseURL}${cardsRef}`)
.then((response) => response.json())
.then((data) => {
const cardContainer = document.getElementById("cardContainer");
cardContainer.innerHTML = "";
for (const key in data) {
const cardData = data[key];
const card = document.createElement("div");
card.classList.add("card");
card.innerHTML = `
<h3>${cardData.title}</h3>
<p>${cardData.description}</p>
`;
cardContainer.appendChild(card);
}
})
.catch((error) => console.error("Error:", error));
}
// Fetch initial cards when the page loads
fetchCards();
</script>
</body>
</html>