Skip to content

Commit

Permalink
Fixes issue lugnitdgp#1 - Navbar updated ; Fixes issue lugnitdgp#2 - …
Browse files Browse the repository at this point in the history
…Favicon added ; Fixes issue lugnitdgp#3 - Theme Changed ; Fixes issue lugnitdgp#5 - Contact Page added ; Fixes issue lugnitdgp#7 - Animation added ; Fixes issue lugnitdgp#8 - Total UI revamped ; Fixes issue lugnitdgp#9 - Sign in page added
  • Loading branch information
silverag2002 committed Apr 3, 2022
1 parent bb51b8c commit 3200a49
Show file tree
Hide file tree
Showing 22 changed files with 1,850 additions and 591 deletions.
Binary file modified .DS_Store
Binary file not shown.
143 changes: 143 additions & 0 deletions contactinfo/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Enter your description here" />
<title>All Products details--DressMe</title>



<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">


<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" async></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" async></script>

<script src="../main.js" async></script>
<link rel="stylesheet" href="../style.css">
<link rel="icon" href="../icons/favicon.ico">
<style >
body{
background-color: black;
}
h1 {
margin-bottom: 40px
}

label {
color: #333
}

.btn-send {
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.2em;
width: 80%;
margin-left: 3px
}

.help-block.with-errors {
color: #ff5050;
margin-top: 5px
}

.card {
margin-left: 10px;
margin-right: 10px
}
</style>
</head>
<body>







<header>
<nav class="navbar navbar-expand-lg navigation-wrap">
<div class="container">
<a class="navbar-brand" href="#">
<img src="../icons/logo.png">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">

<i class="fas fa-stream navbar-toggler-icon"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="../home-page/index.html">Home</a>
</li>

<li class="nav-item">
<a class="nav-link " href="../product-page/products details.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link " href="../sign/signup.html">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="../contactinfo/contact.html">Contact</a>
</li>

</ul>
</div>
</div>
</nav>
</header>





<div class="container">
<div class=" text-center mt-5 ">
<h1>CONTACT US</h1>
</div>
<div class="row ">
<div class="col-lg-7 mx-auto">
<div class="card mt-2 mx-auto p-4 bg-light">
<div class="card-body bg-light">
<div class="container">
<form id="contact-form" role="form">
<div class="controls">
<div class="row">
<div class="col-md-6">
<div class="form-group"> <label for="form_name">Firstname *</label> <input id="form_name" type="text" name="name" class="form-control" placeholder="Please enter your firstname *" required="required" data-error="Firstname is required."> </div>
</div>
<div class="col-md-6">
<div class="form-group"> <label for="form_lastname">Lastname *</label> <input id="form_lastname" type="text" name="surname" class="form-control" placeholder="Please enter your lastname *" required="required" data-error="Lastname is required."> </div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group"> <label for="form_email">Email *</label> <input id="form_email" type="email" name="email" class="form-control" placeholder="Please enter your email *" required="required" data-error="Valid email is required."> </div>
</div>
<div class="col-md-6">
<div class="form-group"> <label for="form_need">Please specify your need *</label> <select id="form_need" name="need" class="form-control" required="required" data-error="Please specify your need.">
<option value="" selected disabled>--Select Your Issue--</option>
<option>Request Invoice for order</option>
<option>Request order status</option>
<option>Haven't received cashback yet</option>
<option>Other</option>
</select> </div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group"> <label for="form_message">Message *</label> <textarea id="form_message" name="message" class="form-control" placeholder="Write your message here." rows="4" required="required" data-error="Please, leave us a message."></textarea> </div>
</div>
<div class="col-md-12"> <input type="submit" class="btn btn-success btn-send pt-2 btn-block " value="Send Message"> </div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
Binary file added home-page/.DS_Store
Binary file not shown.
Binary file removed home-page/background1 - Copy.jfif
Binary file not shown.
Binary file removed home-page/background1.jfif
Binary file not shown.
Binary file removed home-page/background3.jfif
Binary file not shown.
Binary file added home-page/bg2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home-page/bg4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3200a49

Please sign in to comment.