@@ -17,7 +17,7 @@ export interface ClaimResponse {
17
17
template : `
18
18
<div class="claim-container">
19
19
<h2 class="section-title">Claim Your Bitcoin</h2>
20
-
20
+
21
21
<form (ngSubmit)="submitClaim()" #claimForm="ngForm" class="claim-form">
22
22
<!-- Bitcoin Address Input -->
23
23
<div class="form-group">
@@ -39,10 +39,17 @@ export interface ClaimResponse {
39
39
Bitcoin address is required.
40
40
</div>
41
41
</div>
42
-
42
+
43
+ <!-- Preset Amount Buttons -->
44
+ <div class="preset-buttons">
45
+ <button type="button" (click)="setAmount(0.001)" class="preset-button">0.001 BTC</button>
46
+ <button type="button" (click)="setAmount(0.01)" class="preset-button">0.01 BTC</button>
47
+ <button type="button" (click)="setAmount(0.1)" class="preset-button">0.1 BTC</button>
48
+ </div>
49
+
43
50
<!-- Amount Input -->
44
51
<div class="form-group">
45
- <label for="amount">Amount (max: 0.001 BTC)</label>
52
+ <label for="amount">Amount (max: 0.1 BTC)</label>
46
53
<input
47
54
type="number"
48
55
id="amount"
@@ -51,26 +58,26 @@ export interface ClaimResponse {
51
58
#amountInput="ngModel"
52
59
(blur)="amountTouched.set(true)"
53
60
[class.invalid]="amountInput.invalid && shouldShowError(amountTouched())"
54
- placeholder="Enter amount (e.g., 0.001 )"
61
+ placeholder="Enter amount (e.g., 0.1 )"
55
62
min="0.00001"
56
- max="0.001 "
63
+ max="0.1 "
57
64
step="0.00001"
58
65
required
59
66
class="form-control"
60
67
[disabled]="isSubmitting()"
61
68
/>
62
69
<div *ngIf="amountInput.invalid && shouldShowError(amountTouched())" class="error">
63
- Please enter a valid amount between 0.00001 and 0.001 BTC.
70
+ Please enter a valid amount between 0.00001 and 0.1 BTC.
64
71
</div>
65
72
</div>
66
-
73
+
67
74
<!-- Submit Button -->
68
75
<button type="submit" [disabled]="isSubmitting() || claimForm.invalid" class="submit-button">
69
76
<ng-container *ngIf="isSubmitting(); else submitText">Submitting...</ng-container>
70
77
<ng-template #submitText>Claim Bitcoin</ng-template>
71
78
</button>
72
79
</form>
73
-
80
+
74
81
<!-- Response Message -->
75
82
<div *ngIf="submissionStatus()" class="response-message" [ngClass]="submissionStatus()?.type">
76
83
<div *ngIf="submissionStatus()?.type === 'success'">
@@ -81,6 +88,14 @@ export interface ClaimResponse {
81
88
<p>{{ submissionStatus()?.message }}</p>
82
89
</div>
83
90
</div>
91
+
92
+ <!-- Description Box -->
93
+ <div class="description-box">
94
+ <h3>About This Faucet</h3>
95
+ <p>
96
+ This faucet is designed to provide small amounts of Testnet Bitcoins to users for their experiments. The maximum claim per transaction is <strong>0.1 BTC</strong>. Abuse of this service may result in restrictions to ensure fair usage.
97
+ </p>
98
+ </div>
84
99
</div>
85
100
` ,
86
101
styles : [ `
@@ -92,49 +107,49 @@ export interface ClaimResponse {
92
107
margin: 2rem auto;
93
108
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
94
109
}
95
-
110
+
96
111
.section-title {
97
112
text-align: center;
98
113
color: #086c81;
99
114
margin-bottom: 1.5rem;
100
115
font-size: 1.5rem;
101
116
font-weight: bold;
102
117
}
103
-
118
+
104
119
.claim-form {
105
120
display: flex;
106
121
flex-direction: column;
107
122
gap: 1.5rem;
108
-
123
+
109
124
.form-group {
110
125
display: flex;
111
126
flex-direction: column;
112
127
gap: 0.5rem;
113
- }
114
-
128
+ }
129
+
115
130
label {
116
131
font-weight: bold;
117
132
color: #022229;
118
133
}
119
-
134
+
120
135
.form-control {
121
136
padding: 0.75rem;
122
137
border: 1px solid #cbdde1;
123
138
border-radius: 8px;
124
139
font-size: 1rem;
125
140
}
126
-
141
+
127
142
.form-control:focus {
128
143
outline: none;
129
144
border-color: #086c81;
130
145
box-shadow: 0 0 4px #086c81;
131
146
}
132
-
147
+
133
148
.error {
134
149
font-size: 0.875rem;
135
150
color: #ff0000;
136
151
}
137
-
152
+
138
153
.submit-button {
139
154
background-color: #086c81;
140
155
color: #ffffff;
@@ -144,17 +159,130 @@ export interface ClaimResponse {
144
159
font-size: 1rem;
145
160
cursor: pointer;
146
161
transition: background-color 0.3s ease;
147
-
162
+
148
163
&:disabled {
149
164
background-color: #cbdde1;
150
165
cursor: not-allowed;
151
166
}
152
-
167
+
153
168
&:hover:not(:disabled) {
154
169
background-color: #0a758c;
155
170
}
156
171
}
157
172
}
173
+
174
+ .preset-buttons {
175
+ display: flex;
176
+ gap: 0.5rem;
177
+ margin-bottom: 1rem;
178
+ }
179
+
180
+ .preset-button {
181
+ background-color: #086c81;
182
+ color: #ffffff;
183
+ padding: 0.5rem 1rem;
184
+ border: none;
185
+ border-radius: 8px;
186
+ font-size: 1rem;
187
+ cursor: pointer;
188
+ transition: background-color 0.3s ease;
189
+ }
190
+
191
+ .preset-button:hover {
192
+ background-color: #0a758c;
193
+ }
194
+
195
+ .response-message {
196
+ margin-top: 20px;
197
+ padding: 20px;
198
+ border-radius: 8px;
199
+ font-size: 1rem;
200
+ font-weight: bold;
201
+ text-align: center;
202
+ word-wrap: break-word; /* Ensure text wraps within the container */
203
+ }
204
+
205
+ .response-message.success {
206
+ background-color: #d4edda;
207
+ color: #155724;
208
+ border: 1px solid #c3e6cb;
209
+ }
210
+
211
+ .response-message.error {
212
+ background-color: #f8d7da;
213
+ color: #721c24;
214
+ border: 1px solid #f5c6cb;
215
+ }
216
+
217
+ .description-box {
218
+ margin-top: 2rem;
219
+ padding: 1rem;
220
+ background-color: #ffffff;
221
+ border: 1px solid #cbdde1;
222
+ border-radius: 8px;
223
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
224
+ }
225
+
226
+ @media (max-width: 768px) {
227
+ .claim-container {
228
+ padding: 1rem;
229
+ }
230
+
231
+ .claim-form {
232
+ gap: 1rem;
233
+ padding: 0 0.5rem; /* Adjust padding for smaller screens */
234
+ }
235
+
236
+ .form-group {
237
+ padding: 0 0.5rem; /* Ensure equal padding on both sides for smaller screens */
238
+ }
239
+
240
+ .preset-buttons {
241
+ flex-direction: column;
242
+ gap: 0.5rem;
243
+ }
244
+
245
+ .response-message {
246
+ font-size: 0.875rem;
247
+ padding: 15px;
248
+ word-wrap: break-word; /* Ensure text wraps within the container */
249
+ }
250
+
251
+ .description-box {
252
+ padding: 0.75rem;
253
+ }
254
+ }
255
+
256
+ @media (max-width: 480px) {
257
+ .claim-container {
258
+ padding: 1rem;
259
+ margin: 1rem;
260
+ }
261
+
262
+ .claim-form {
263
+ gap: 0.75rem;
264
+ padding: 0 0.25rem; /* Adjust padding for smaller screens */
265
+ }
266
+
267
+ .form-group {
268
+ padding: 0 0.25rem; /* Ensure equal padding on both sides for smaller screens */
269
+ }
270
+
271
+ .preset-buttons {
272
+ flex-direction: column;
273
+ gap: 0.5rem;
274
+ }
275
+
276
+ .response-message {
277
+ font-size: 0.75rem;
278
+ padding: 10px;
279
+ word-wrap: break-word; /* Ensure text wraps within the container */
280
+ }
281
+
282
+ .description-box {
283
+ padding: 0.5rem;
284
+ }
285
+ }
158
286
` ]
159
287
} )
160
288
export class ClaimComponent {
@@ -173,7 +301,7 @@ export class ClaimComponent {
173
301
174
302
// Validation Signals
175
303
isAddressValid : Signal < boolean > = computed ( ( ) => ! ! this . address ( ) ) ;
176
- isAmountValid : Signal < boolean > = computed ( ( ) => this . amount ( ) !== null && this . amount ( ) ! > 0 && this . amount ( ) ! <= 0.001 ) ;
304
+ isAmountValid : Signal < boolean > = computed ( ( ) => this . amount ( ) !== null && this . amount ( ) ! > 0 && this . amount ( ) ! <= 0.1 ) ;
177
305
178
306
constructor ( private apiService : ApiService ) { }
179
307
@@ -228,4 +356,8 @@ export class ClaimComponent {
228
356
this . amountTouched . set ( false ) ;
229
357
this . formSubmitted . set ( false ) ;
230
358
}
359
+
360
+ setAmount ( amount : number ) : void {
361
+ this . amount . set ( amount ) ;
362
+ }
231
363
}
0 commit comments