Skip to content

Commit

Permalink
Add Signup page design rudra016#236
Browse files Browse the repository at this point in the history
  • Loading branch information
lkanwat committed Dec 10, 2023
1 parent a7d1492 commit 92683ac
Show file tree
Hide file tree
Showing 3 changed files with 246 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

106 changes: 106 additions & 0 deletions signup Page/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />

<title>Signup Page</title>
</head>
<body>
<form action="">
<div class="container">
<div class="column">
<h2 class="info">General Information</h2>
<input type="text" placeholder="Title" />

<div class="inline-container">
<input
type="text"
id="Name"
name="firstName"
required
placeholder="First Name"
style="margin-right: 10px"
/>

<input
type="text"
id="Name"
name="lastName"
required
placeholder="Last Name"
/>
</div>

<input
type="text"
id="Position"
name="position"
placeholder="Position"
/>
<input
type="text"
id="company"
name="company"
placeholder="Company"
/>

<div class="inline-container">
<input
type="text"
id="Business Arena"
name="business arena"
style="margin-right: 10px"
placeholder="Business Arena"
/>
<input
type="text"
id="Employees"
name="Employees"
placeholder="Employees"
/>
</div>
</div>

<div class="column">
<h2 class="details">Contact Details</h2>
<input type="text" id="street" placeholder="Street + Nr" />
<input
type="text"
id="additional-information"
placeholder="Additional Information"
/>
<div class="inline-container">
<input type="text" id="zip-code" placeholder="Zip Code" />
<input type="text" id="place" placeholder="Place" />
</div>

<input type="text" id="Country" placeholder="Country" />

<div class="inline-container">
<input type="text" id="code" placeholder="Code+" />
<input
type="tel"
id="phone"
name="phone"
placeholder="Phone Number"
required
/>
</div>

<input type="email" id="email" placeholder="Your Email" />

<div class="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" />
<p>
I do accept the <a href="">Terms and Conditions </a> of your site
</p>
</div>

<button type="submit">Sign Up</button>
</div>
</div>
</form>
</body>
</html>
134 changes: 134 additions & 0 deletions signup Page/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
body {
display: flex;
align-items: center;
justify-content: center;
font-family: serif;
margin: 0;
padding: 0;
background-color: rgba(140, 171, 225, 255);
}

form {
margin: 1rem;
}

.info {
font-weight: 100;
color: #c9e5fa;
}

.details {
font-weight: 100;
color: white;
}
.container {
display: flex;
max-width: 800px;
margin: 50px auto;
overflow: hidden;
background-color: #fff;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.column {
padding: 1rem;
width: 50%;
float: left;
margin-right: 2%;
padding: 2.6rem 1rem 2rem 3rem;
}

.column:last-child {
width: auto;
padding: 2.6rem 3rem 2rem 3rem;
margin-right: 0;
background-color: #4835d4;
}

label {
display: block;
margin-bottom: 8px;
}

input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
}

.column:last-child input {
color: #d3c7e8;
background-color: #4835d4;
}
.column:last-child input::placeholder {
color: #d3c7e8; /* Set the placeholder text color to white */
background-color: #4835d4;
}

.inline-container {
display: flex;
}

.inline-container input {
flex: 1;
}

.inline-container input#zip-code {
flex: 1;
width: 40%;
margin-right: 20px;
}

.inline-container input#place {
flex: 2;
width: 60%;
}

.inline-container input#code {
flex: 1;
width: 30%;
}

.inline-container input#phone {
flex: 2;
}

button {
display: block;
background-color: white;
color: black;
padding: 10px 40px;
border: none;
border-radius: 15px;
cursor: pointer;
float: left;
margin: 1rem 1rem 1rem 0;
}

button:hover {
background-color: whitesmoke;
}

.checkbox {
margin-top: 1rem;
font-size: 13px;
}

.checkbox p {
display: inline;
color: rgb(244, 229, 229);
}
a {
color: rgb(244, 229, 229);
}

input#checkbox {
color: #4835d4;
width: fit-content;
align-items: center;
margin-right: 0.8rem;
}

0 comments on commit 92683ac

Please sign in to comment.