Ragisteration Page For Website

C++ Mastery
0
Unleash the Power of Registration Pages for Your Website



Introduction:


Are you ready to take your website to the next level? Look no further! In this bite-sized #shorts video, we're diving headfirst into the world of registration pages and how they can supercharge your website's engagement.

🌐 Imagine effortlessly integrating a sleek and user-friendly registration page into your site, boosting user interaction and retention in a matter of minutes! 💡 Whether you're a coding enthusiast or a tech-savvy beginner, our step-by-step guide will make the process a breeze.

🎯 Key Features:Streamlined user registration process.
Enhanced user data management.
Increased user engagement and loyalty.
Quick integration for all skill levels.

Join us on this coding adventure and unlock the secrets to a more dynamic and interactive website. Tap that like button, hit subscribe, and share with fellow #coders who deserve a website that stands out from the crowd.

🚨 Don't wait, take action today and transform your website into a powerhouse of user interaction! ⏳ Let's revolutionize the way websites engage, one registration page at a time.

Source Code:
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Ragister Page</title>
  <style>
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #a2caff;
  color: #576d95;
  font-family: Arial;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wrapper {
  max-width: 400px;
  width: 100%;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 68px 0 rgba(136, 174, 222, 0.42),
inset 0 -8px 16px 0 #b9d1f1;
}

.header {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 12px;
  text-align: center;
}

.headerText {
  font-size: 16px;
  margin: 0 0 24px 0;
  text-align: center;
}

.inputWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 16px 0;
}
.inputWrapper label {
  margin: 0 0 4px 0;
}
.inputWrapper input {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #b5d4ff;
  color: #576d95;
  outline-color: #236eb9;
}

.submitButton {
  border: none;
  padding: 12px 30px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  background-image: linear-gradient(90deg, #5fc7ff 50%, #43a8ff 100%);
  background-size: 200% 100%;
  background-position: 100% 100%;
  transition: background-position 256ms;
  will-change: background-position;
  cursor: pointer;
}
.submitButton:hover {
  background-position: 0% 200%;
}


  </style>
</head>

<body>
  <div class="wrapper">
    <h1 class="header">Register</h1>
    <p class="headerText">To get access to the app</p>
  <form>
 
    <div class="inputWrapper">
      <label for="name">Name</label>
      <input id="name" type="text" required>
    </div>
   
    <div class="inputWrapper">
      <label for="email">E-mail</label>
      <input id="email" type="email" required>
    </div>
   
    <div class="inputWrapper">
      <label for="password">Password</label>
      <input id="password" type="password" required>
    </div>
    <div class="inputWrapper">
      <label for="repeatPassword">Repeat password</label>
      <input id="repeatPassword" type="password" required>
    </div>
   
    <button type="submit" class="submitButton">Register</button>
 
  </form>
</div>

</body>
<script>
document.querySelector("form").addEventListener("submit", function(e){
    e.preventDefault();
    alert("Form submited!")
});

</script>

</html>

Post a Comment

0Comments
Post a Comment (0)