From c677ace283a4a8225f04373d516e526d40a0c32e Mon Sep 17 00:00:00 2001
From: amrit1122 <57001173+amrit1122@users.noreply.github.com>
Date: Fri, 25 Oct 2019 20:28:09 +0530
Subject: [PATCH 1/2] index1.html
---
index1.html | 212 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 212 insertions(+)
create mode 100644 index1.html
diff --git a/index1.html b/index1.html
new file mode 100644
index 0000000..7b473b6
--- /dev/null
+++ b/index1.html
@@ -0,0 +1,212 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
Hello Everyone, I am Amit Chambial the founder and author of this blog.I am student and developer. My focus is now on all things HTML , CSS , JAVSCRIPT .I am also working to contribute to open-source software on GitHub.This is my attempt to learn more about hosting a blog online and to overcome all the obstacles that will come in his way.
+
+
+
+
+

+
+
Hi! I am Kartik Verma a computer science student at NIT, Hamirpur. I love …
+reading technical stuff, solving brainstorming problems, learning new technologies and …
+‘Programming’ (surprise surprise). My Hobbies are playing chess, listening music, watching movies and sometimes wandering with my friends @ NIT campus.
+
+
+
+
+
Hi I am Deven Sharma student of National Institute of technology Hamirpur.Iam basically a Competitive programmer and a Java Developer.I Basically interested in
+C/C++,Java ,CSS ,HTML.This blog is for the learners and creative people.
+
+
+
+
+
+
+
+
From 94f7f7f815c72ef0873ef4e7819f97515566924f Mon Sep 17 00:00:00 2001
From: amrit1122 <57001173+amrit1122@users.noreply.github.com>
Date: Fri, 25 Oct 2019 20:30:34 +0530
Subject: [PATCH 2/2] login1.js
---
js/login1.js | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 js/login1.js
diff --git a/js/login1.js b/js/login1.js
new file mode 100644
index 0000000..5901a8a
--- /dev/null
+++ b/js/login1.js
@@ -0,0 +1,40 @@
+// Login Form
+
+$(function() {
+ var button = $('#loginButton');
+ var box = $('#loginBox');
+ var form = $('#loginForm');
+ button.removeAttr('href');
+ button.mouseup(function(login) {
+ box.toggle();
+ button.toggleClass('active');
+ });
+ form.mouseup(function() {
+ return false;
+ });
+ $(this).mouseup(function(login) {
+ if(!($(login.target).parent('#loginButton').length > 0)) {
+ button.removeClass('active');
+ box.hide();
+ }
+ });
+});
+$(function() {
+ var button = $('#signupButton');
+ var box = $('#signupBox');
+ var form = $('#signupForm');
+ button.removeAttr('href');
+ button.mouseup(function(login) {
+ box.toggle();
+ button.toggleClass('active');
+ });
+ form.mouseup(function() {
+ return false;
+ });
+ $(this).mouseup(function(login) {
+ if(!($(login.target).parent('#signupButton').length > 0)) {
+ button.removeClass('active');
+ box.hide();
+ }
+ });
+});