-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistrationScreen.html
More file actions
151 lines (129 loc) · 3.34 KB
/
RegistrationScreen.html
File metadata and controls
151 lines (129 loc) · 3.34 KB
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
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register CBDC Wallet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f4f6f9;
margin: 0;
padding: 0;
color: #2d3436;
}
header {
background-color: #003366;
color: white;
padding: 20px 40px;
text-align: center;
}
header h1 {
margin: 0;
}
nav {
background-color: #00509e;
padding: 10px 40px;
display: flex;
flex-wrap: wrap;
gap: 20px;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
}
.container {
max-width: 600px;
margin: 40px auto;
background: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
h2 {
text-align: center;
color: #00509e;
margin-bottom: 30px;
}
label {
font-weight: 500;
}
input, select {
width: 100%;
padding: 10px;
margin-top: 5px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
}
button {
width: 100%;
padding: 12px;
background-color: #00509e;
color: white;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
}
button:hover {
background-color: #003f7f;
}
footer {
text-align: center;
background-color: #2d3436;
color: #b2bec3;
padding: 20px;
font-size: 0.9em;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<h1>CBDC Wallet Registration</h1>
<p>Create your secure digital wallet</p>
</header>
<nav>
<a href="Home.html">Home</a>
<a href="LoginScreen.html">Login</a>
<a href="Transactions (1).html">Transactions</a>
<a href="#faq">FAQs</a>
<a href="#help">Help</a>
</nav>
<div class="container">
<h2>Create CBDC Wallet</h2>
<form action="/api/register" method="POST">
<label for="name">Full Name:</label>
<input type="text" name="name" id="name" required>
<label for="phone">Phone Number:</label>
<input type="tel" name="phone" id="phone" required>
<label for="idnumber">National ID / Passport Number:</label>
<input type="text" name="idnumber" id="idnumber" required>
<label for="country">Country of Residence:</label>
<select name="country" id="country" required>
<option value="">--Select--</option>
<option value="South Africa">South Africa</option>
<option value="Botswana">Botswana</option>
<option value="Namibia">Namibia</option>
<option value="Zimbabwe">Zimbabwe</option>
<option value="Mozambique">Mozambique</option>
<option value="Tanzania">Tanzania</option>
<option value="Angola">Angola</option>
<option value="DRC">DRC</option>
<option value="Seychelles">Seychelles</option>
<option value="Lesotho">Lesotho</option>
<option value="Foreign">Outside SADC Region</option>
</select>
<label for="password">Password:</label>
<input type="password" name="password" id="password" required>
<button type="submit">Register</button>
</form>
</div>
<footer>
© 2025 SADC CBDC Wallet | Southern African Development Community
</footer>
</body>
</html>