-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03_profileCreation.html
More file actions
144 lines (128 loc) · 3.51 KB
/
03_profileCreation.html
File metadata and controls
144 lines (128 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>uConnect - Create your profile</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
/* Reset default browser styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Global Styles */
body {
font-family: "Montserrat", Arial, sans-serif;
color: #333;
line-height: 1.6;
background: linear-gradient(to right, #f5f5f5, #f47591);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding-top: 70px;
transition: all 0.25s linear;
}
/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #f47591;
height: 60px;
display: flex;
align-items: center;
padding-left: 20px;
box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
/* Logo Styles */
.logo {
height: 40px;
margin-left: 20px;
}
.container {
background-color: #fff;
width: 80%;
max-width: 500px;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 180px;
}
h1 {
text-align: center;
color: #333;
}
form {
margin-top: 20px;
}
label {
display: block;
margin: 15px 0 5px;
color: #333;
}
input,
textarea {
width: 100%;
padding: 0.7rem;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
outline: none;
box-sizing: border-box;
}
#photo {
margin-bottom: 20px;
}
button {
display: block;
width: 100%;
padding: 1rem 2rem;
background: linear-gradient(to right, #ff4081, #f47591);
color: #fff;
font-size: 1.2rem;
border: none;
border-radius: 2rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background: linear-gradient(to right, #f47591, #ff4081);
}
</style>
</head>
<body>
<header>
<a href="/01_landingPage.html"
><img
src="/img/Screenshot_2023-11-11_210535-removebg-preview.png"
alt="Logo"
class="logo"
/></a>
</header>
<div class="container">
<h1>Create Your Profile</h1>
<form id="profile-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" required />
<label for="age">Age</label>
<input type="number" id="age" name="age" required />
<label for="bio">Short Bio</label>
<textarea id="bio" name="bio" required></textarea>
<label for="interests">Interests</label>
<input type="text" id="interests" name="interests" required />
<label for="photo">Upload Profile Photo</label>
<input type="file" id="photo" name="photo" accept="image/*" required />
<button type="submit">Create Profile</button>
</form>
</div>
</body>
</html>