<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>

<channel>
	<title>login - Bipon's Diary</title>
	<atom:link href="https://biponnotes.iglyphic.com/tag/login/feed/" rel="self" type="application/rss+xml" />
	<link>https://biponnotes.iglyphic.com</link>
	<description>Do good for others. It will come back in unexpected ways.</description>
	<lastBuildDate>Sun, 19 Jan 2020 18:19:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
<site xmlns="com-wordpress:feed-additions:1">168324471</site>	<item>
		<title>Create login and registration form using HTML CSS and JavaScript</title>
		<link>https://biponnotes.iglyphic.com/create-login-and-registration-form-using-html-css-and-javascript/</link>
					<comments>https://biponnotes.iglyphic.com/create-login-and-registration-form-using-html-css-and-javascript/#respond</comments>
		
		<dc:creator><![CDATA[bipon68]]></dc:creator>
		<pubDate>Sun, 19 Jan 2020 18:01:22 +0000</pubDate>
				<category><![CDATA[ওয়েব ডেভেলপমেন্ট]]></category>
		<category><![CDATA[ফ্রন্ট এন্ড ডেভেলপমেন্ট]]></category>
		<category><![CDATA[front-end]]></category>
		<category><![CDATA[front-end-development]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[registration]]></category>
		<guid isPermaLink="false">https://bipon.me/?p=399</guid>

					<description><![CDATA[<p>HTML CSS jQuery Source code</p>
<p>The post <a href="https://biponnotes.iglyphic.com/create-login-and-registration-form-using-html-css-and-javascript/">Create login and registration form using HTML CSS and JavaScript</a> first appeared on <a href="https://biponnotes.iglyphic.com">Bipon's Diary</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>HTML</p>



<pre class="wp-block-code"><code>&lt;div class="login-page">
  &lt;div class="form">
    &lt;form class="register-form">
      &lt;input type="text" placeholder="user name"/>
      &lt;input type="text" placeholder="password"/>
      &lt;input type="text" placeholder="email id"/>
      &lt;button>Create&lt;/button>
      &lt;p class="message">Already Registered? &lt;a href="#">Login&lt;/a>&lt;/p>
    &lt;/form>
    
    &lt;form class="login-form">
      &lt;input type="text" placeholder="user name"/>
      &lt;input type="password" placeholder="password"/>
      &lt;button>Login&lt;/button>
      &lt;p class="message">Not a Registered? &lt;a href="#">Register&lt;/a>&lt;/p>
    &lt;/form>
  &lt;/div>
&lt;/div></code></pre>



<p>CSS</p>



<pre class="wp-block-code"><code>body{
  background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6), url(https://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/reference_guide/cats_and_excessive_meowing_ref_guide/1800x1200_cats_and_excessive_meowing_ref_guide.jpg));
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.login-page{
  width: 360px;
  padding: 10% 0 0;
  margin: auto;
}
.form{
  position: relative;
  z-index: 1;
  background: rgba(7, 40, 195, 0.8);
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
}
.form input{
  outline: 1;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button{
  text-transform: uppercase;
  outline: 0;
  background: #4caf50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.form button:hover, .form button:active{
  background: #43a047;
}
.form .message{
  margin: 0 0 15px;
  color: aliceblue;
  font-size: 12px;
}
.form .message a{
  text-decoration: none;
  color: #4caf50;
}
.form .register-form{
  display: none;
}</code></pre>



<p>jQuery</p>



<pre class="wp-block-code"><code>$('.message a').click(function(){
  $('form').animate({height: "toggle", opacity: "toggle"}, "slow")
})</code></pre>



<p><a href="https://codepen.io/bipon68/pen/zYxMGKd">Source code</a></p><p>The post <a href="https://biponnotes.iglyphic.com/create-login-and-registration-form-using-html-css-and-javascript/">Create login and registration form using HTML CSS and JavaScript</a> first appeared on <a href="https://biponnotes.iglyphic.com">Bipon's Diary</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://biponnotes.iglyphic.com/create-login-and-registration-form-using-html-css-and-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">399</post-id>	</item>
	</channel>
</rss>
