diff --git a/company.html b/company.html index 2b28882..da29d63 100644 --- a/company.html +++ b/company.html @@ -458,9 +458,9 @@ - - + + - + diff --git a/influencecompstyle.css b/influencecompstyle.css index bf3e1cd..6e61121 100644 --- a/influencecompstyle.css +++ b/influencecompstyle.css @@ -2012,6 +2012,7 @@ pre code { @media (prefers-reduced-motion: reduce) { .form-control { transition: none; + } } .form-control::-ms-expand { @@ -5419,6 +5420,7 @@ a.close.disabled { .modal.fade .modal-dialog { transition: transform 0.3s ease-out; transform: translate(0, -50px); + } @media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { @@ -5479,11 +5481,12 @@ a.close.disabled { flex-direction: column; width: 100%; pointer-events: auto; - background-color: #fff; + background-color: #070707; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0; + color : #fff; } .modal-backdrop { @@ -5497,9 +5500,12 @@ a.close.disabled { } .modal-backdrop.fade { opacity: 0; + } .modal-backdrop.show { - opacity: 0.5; + opacity: 1; + filter: blur(5px); + } .modal-header { @@ -10074,7 +10080,7 @@ img::-moz-selection { #mainNav { padding-top: 1rem; padding-bottom: 1rem; - background-color: #212529; + color: #070707; } #mainNav .navbar-toggler { padding: 0.75rem; @@ -10115,16 +10121,16 @@ img::-moz-selection { } #mainNav .navbar-brand { font-size: 1.5em; - transition: font-size 0.3s ease-in-out; + transition: font-size 0.4s ease-in-out; } #mainNav .navbar-brand img { height: 2rem; - transition: height 0.3s ease-in-out; + transition: 0.4s ease-in-out; } #mainNav.navbar-shrink { padding-top: 1rem; padding-bottom: 1rem; - background-color: #212529; + background-color: #070707; } #mainNav.navbar-shrink .navbar-brand { font-size: 1.25em; @@ -10263,6 +10269,7 @@ header.masthead .masthead-heading { height: 3rem; cursor: pointer; background-color: transparent; + } .portfolio-modal .close-modal:hover { opacity: 0.3; diff --git a/influencer.html b/influencer.html index e69de29..f74da55 100644 --- a/influencer.html +++ b/influencer.html @@ -0,0 +1,466 @@ + + + + + + + + + + + Brancher for Influencers + + + + + + + +
+
+
Brancher For Influencers
+
Use Your Platform
+ Already Have An Account? +
+
+ +
+
+
+

Services

+

How We Help

+
+
+
+ +

Connect

+

Connect with influencers and create connections with them to help build your business. Sponsorships will help create a social media prescense for your brand or business, building you up for the future.

+
+
+ +

Market

+

Working with influencers will attract more eyes on your product or service. The more connections you gain the larger your audience will be and gain a steady customer base.

+
+
+ +

Fact Check

+

Working in the business of social media marketing can be risky. Working with Brancher ensures that both sides of the deal come to terms on the agreement and uphold their promises. Brancher does not tolerate any scams or frauds.

+
+
+
+
+ +
+
+
+

Get Started

+

How to get your company set up on Brancher.

+
+
+
+
+
+
+
+
+
+
Register
+
Sign Up For Free Today!
+
+
+
+
+
+
+
+
+
+
+
Customize
+
+
+
+
+
+
+
+
+
+
+
+
Specialize
+
+
+
+
+
+
+
+
+
+
+
+
Explore
+
Find Influencers
+
+
+
+
+
+
+
+
+
+
+
Contact
+
Talk With Influencers
+
+
+
+
+
+
+
+
+
+
+
Expand
+
Keep At It!
+
+
+
+
+
+
+ + +
+
+
+

Our Amazing Team

+

We are here to serve you, so always feel free to contact us on social media or using the Brancher contact form down below.

+
+
+
+
+ +

Zaeem Qureshi

+

Chief Operations Offiicer

+ +
+
+
+
+ +

Adnan Murtaza

+

Lead Designer

+ +
+
+
+
+ +

Rushil Sidhu

+

Chief Executive Officer

+ +
+
+
+
+
+
+ +

Taj Abdin

+

Lead Consultant

+ +
+
+
+
+ +

Abrar Murtaza

+

Lead Marketer

+ +
+
+
+
+ +

Rushil Umaretiya

+

Lead Developer

+ +
+
+
+
+

+
+
+
+ + + +
+
+
+

Contact Us

+

We would like to hear your feedback and questions!

+
+
+
+
+
+ +

+
+
+ +

+
+
+ +

+
+
+
+
+ +

+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mail/contact_me.js b/mail/contact_me.js index 2a13ab7..ccfb3b8 100644 --- a/mail/contact_me.js +++ b/mail/contact_me.js @@ -21,7 +21,7 @@ $(function () { $this = $("#sendMessageButton"); $this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages $.ajax({ - url: "/assets/mail/contact_me.php", + url: "mail/contact_me.php", type: "POST", data: { name: name, diff --git a/mail/contact_me.php b/mail/contact_me.php index bb93402..69d394c 100644 --- a/mail/contact_me.php +++ b/mail/contact_me.php @@ -6,7 +6,7 @@ if(empty($_POST['name']) || empty($_POST['message']) || !filter_var($_POST['email'],FILTER_VALIDATE_EMAIL)) { - echo "No arguments Provided!"; + echo "Please fill out all boxes"; return false; } diff --git a/php-user-registration-form/DataSource.php b/php-user-registration-form/DataSource.php deleted file mode 100644 index 3e72684..0000000 --- a/php-user-registration-form/DataSource.php +++ /dev/null @@ -1,159 +0,0 @@ -conn = $this->getConnection(); - } - - /** - * If connection object is needed use this method and get access to it. - * Otherwise, use the below methods for insert / update / etc. - * - * @return \mysqli - */ - public function getConnection() - { - $conn = new \mysqli(self::HOST, self::USERNAME, self::PASSWORD, self::DATABASENAME); - - if (mysqli_connect_errno()) { - trigger_error("Problem with connecting to database."); - } - - $conn->set_charset("utf8"); - return $conn; - } - - /** - * To get database results - * @param string $query - * @param string $paramType - * @param array $paramArray - * @return array - */ - public function select($query, $paramType="", $paramArray=array()) - { - $stmt = $this->conn->prepare($query); - - if(!empty($paramType) && !empty($paramArray)) { - $this->bindQueryParams($sql, $paramType, $paramArray); - } - - $stmt->execute(); - $result = $stmt->get_result(); - - if ($result->num_rows > 0) { - while ($row = $result->fetch_assoc()) { - $resultset[] = $row; - } - } - - if (! empty($resultset)) { - return $resultset; - } - } - - /** - * To insert - * @param string $query - * @param string $paramType - * @param array $paramArray - * @return int - */ - public function insert($query, $paramType, $paramArray) - { - print $query; - $stmt = $this->conn->prepare($query); - $this->bindQueryParams($stmt, $paramType, $paramArray); - $stmt->execute(); - $insertId = $stmt->insert_id; - return $insertId; - } - - /** - * To execute query - * @param string $query - * @param string $paramType - * @param array $paramArray - */ - public function execute($query, $paramType="", $paramArray=array()) - { - $stmt = $this->conn->prepare($query); - - if(!empty($paramType) && !empty($paramArray)) { - $this->bindQueryParams($stmt, $paramType="", $paramArray=array()); - } - $stmt->execute(); - } - - /** - * 1. Prepares parameter binding - * 2. Bind prameters to the sql statement - * @param string $stmt - * @param string $paramType - * @param array $paramArray - */ - public function bindQueryParams($stmt, $paramType, $paramArray=array()) - { - $paramValueReference[] = & $paramType; - for ($i = 0; $i < count($paramArray); $i ++) { - $paramValueReference[] = & $paramArray[$i]; - } - call_user_func_array(array( - $stmt, - 'bind_param' - ), $paramValueReference); - } - - /** - * To get database results - * @param string $query - * @param string $paramType - * @param array $paramArray - * @return array - */ - public function numRows($query, $paramType="", $paramArray=array()) - { - $stmt = $this->conn->prepare($query); - - if(!empty($paramType) && !empty($paramArray)) { - $this->bindQueryParams($stmt, $paramType, $paramArray); - } - - $stmt->execute(); - $stmt->store_result(); - $recordCount = $stmt->num_rows; - return $recordCount; - } -} diff --git a/php-user-registration-form/Member.php b/php-user-registration-form/Member.php deleted file mode 100644 index cc56974..0000000 --- a/php-user-registration-form/Member.php +++ /dev/null @@ -1,86 +0,0 @@ -ds = new DataSource(); - } - - function validateMember() - { - $valid = true; - $errorMessage = array(); - foreach ($_POST as $key => $value) { - if (empty($_POST[$key])) { - $valid = false; - } - } - - if($valid == true) { - // Password Matching Validation - if ($_POST['password'] != $_POST['confirm_password']) { - $errorMessage[] = 'Passwords should be same.'; - $valid = false; - } - - // Email Validation - if (! isset($error_message)) { - if (! filter_var($_POST["userEmail"], FILTER_VALIDATE_EMAIL)) { - $errorMessage[] = "Invalid email address."; - $valid = false; - } - } - - // Validation to check if Terms and Conditions are accepted - if (! isset($error_message)) { - if (! isset($_POST["terms"])) { - $errorMessage[] = "Accept terms and conditions."; - $valid = false; - } - } - } - else { - $errorMessage[] = "All fields are required."; - } - - if ($valid == false) { - return $errorMessage; - } - return; - } - - function isMemberExists($username, $email) - { - $query = "select * FROM registered_users WHERE user_name = ? OR email = ?"; - $paramType = "ss"; - $paramArray = array($username, $email); - $memberCount = $this->ds->numRows($query, $paramType, $paramArray); - - return $memberCount; - } - - function insertMemberRecord($username, $displayName, $password, $email) - { - $passwordHash = md5($password); - $query = "INSERT INTO registered_users (user_name, display_name, password, email) VALUES (?, ?, ?, ?)"; - $paramType = "ssss"; - $paramArray = array( - $username, - $displayName, - $passwordHash, - $email - ); - $insertId = $this->ds->insert($query, $paramType, $paramArray); - return $insertId; - } -} diff --git a/php-user-registration-form/css/style.css b/php-user-registration-form/css/style.css deleted file mode 100644 index ebccabb..0000000 --- a/php-user-registration-form/css/style.css +++ /dev/null @@ -1,90 +0,0 @@ -body { - font-family: Arial; - color: #333; - font-size: 0.95em; -} - -.form-head { - color: #191919; - font-weight: normal; - font-weight: 400; - margin: 0; - text-align: center; - font-size: 1.8em; -} - -.error-message { - padding: 7px 10px; - background: #fff1f2; - border: #ffd5da 1px solid; - color: #d6001c; - border-radius: 4px; - margin: 30px 0px 10px 0px; -} - -.success-message { - padding: 7px 10px; - background: #cae0c4; - border: #c3d0b5 1px solid; - color: #027506; - border-radius: 4px; - margin: 30px 0px 10px 0px; -} - -.demo-table { - background: #ffffff; - border-spacing: initial; - margin: 15px auto; - word-break: break-word; - table-layout: auto; - line-height: 1.8em; - color: #333; - border-radius: 4px; - padding: 20px 40px; - width: 380px; - border: 1px solid; - border-color: #e5e6e9 #dfe0e4 #d0d1d5; -} - -.demo-table .label { - color: #888888; -} - -.demo-table .field-column { - padding: 15px 0px; -} - -.demo-input-box { - padding: 13px; - border: #CCC 1px solid; - border-radius: 4px; - width: 100%; -} - -.btnRegister { - padding: 13px; - background-color: #5d9cec; - color: #f5f7fa; - cursor: pointer; - border-radius: 4px; - width: 100%; - border: #5791da 1px solid; - font-size: 1.1em; -} - -.response-text { - max-width: 380px; - font-size: 1.5em; - text-align: center; - background: #fff3de; - padding: 42px; - border-radius: 3px; - border: #f5e9d4 1px solid; - font-family: arial; - line-height: 34px; - margin: 15px auto; -} - -.terms { - margin-bottom: 5px; -} \ No newline at end of file diff --git a/php-user-registration-form/index.php b/php-user-registration-form/index.php deleted file mode 100644 index 5d33fbc..0000000 --- a/php-user-registration-form/index.php +++ /dev/null @@ -1,105 +0,0 @@ -validateMember($username, $displayName, $password, $email); - - if (empty($errorMessage)) { - $memberCount = $member->isMemberExists($username, $email); - - if ($memberCount == 0) { - $insertId = $member->insertMemberRecord($username, $displayName, $password, $email); - if (! empty($insertId)) { - header("Location: thankyou.php"); - } - } else { - $errorMessage[] = "User already exists."; - } - } -} -?> - - -PHP User Registration Form - - - -
-
-
Sign Up
- - -
- "; - } - ?> -
- -
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
- -
-
- -
- -
-
-
-
- I accept terms - and conditions -
-
- -
-
-
-
- - diff --git a/php-user-registration-form/sql/registered_users.sql b/php-user-registration-form/sql/registered_users.sql deleted file mode 100644 index 402ff34..0000000 --- a/php-user-registration-form/sql/registered_users.sql +++ /dev/null @@ -1,14 +0,0 @@ --- --- Table structure for table `registered_users` --- - -CREATE TABLE IF NOT EXISTS `registered_users` ( - `id` int(8) NOT NULL AUTO_INCREMENT, - `user_name` varchar(255) NOT NULL, - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `password` varchar(25) NOT NULL, - `email` varchar(55) NOT NULL, - `gender` varchar(20) NOT NULL, - PRIMARY KEY (`id`) -); \ No newline at end of file diff --git a/php-user-registration-form/thankyou.php b/php-user-registration-form/thankyou.php deleted file mode 100644 index 730a24e..0000000 --- a/php-user-registration-form/thankyou.php +++ /dev/null @@ -1,12 +0,0 @@ - - - -Thank you for registering with us - - - -
- Thank you for registering with us! -
- - diff --git a/php-user-registration-form/try.html b/php-user-registration-form/try.html deleted file mode 100644 index c551dc2..0000000 --- a/php-user-registration-form/try.html +++ /dev/null @@ -1,64 +0,0 @@ - - - -PHP User Registration Form - - - -
-
-
Sign Up
- -
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
- -
-
- -
- -
-
-
-
- I accept terms - and conditions -
-
- -
-
-
-
- -