-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact2.html
118 lines (108 loc) · 5.57 KB
/
contact2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact-Us</title>
<link href = "styles.css" rel="stylesheet">
<link href = "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel = "stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<header>
<nav class = "navbar navbar-white navbar-expand-md bg-white justify-content-start">
<!-- customizes toggle bar hamburger menu, so it goes all the way right-->
<div class="container-fluid">
<!-- adding the logo -->
<a class="navbar-brand" href="./index.html">
<!-- <img src ="./images/ge-logo.png" alt="logo" width="40"> -->
<h1 style="color:#26db90;"> innisfree</h1>
</a>
<!--adding a togglebar!(for a responsive navbar)-->
<button class="navbar-toggler" type ="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- style="--bs-navbar-color:white;--bs-navbar-active-color:#167ed2; --bs-navbar-hover-color: #167ed2;"> dont know how to fix colors -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav navbar-nav me-auto mb-2 mb-md-0" >
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about2.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./products2.html">Our Products</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./contact2.html">Contact Us</a>
</li>
</ul>
</div>
</div>
<!-- Button trigger modal -->
<span class="navbar-text"></span>
<!-- can change the btn color here-->
<button type = "button" class="btn btn-light" data-bs-toggle="modal" data-bs-target="#exampleModal">
<span class="fa fa-sign-in"></span>Login</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Login</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="container-fluid modal-body">
<form> <!-- so it retreives data-->
<div class="row">
<div class="col-md-2">
<label class="form-text fs-5" for = "name" > Username: </label> <input id = "name" type = "text" onmouse = "alert('required!')" required/><br>
</div>
</div>
<div class="row">
<div class="col-md-2">
<label class="form-text fs-5" for = "pass"> Password: </label> <input id = "pass" type = "password" required/>
</div>
</div>
</form>
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Login</button>
</div>
</div>
</div>
</div>
</nav>
</header>
<body class="bg-color">
<div class="container">
<h1 class="display-5 text-center">Contact Us</h1>
</div>
<div class="d-flex container justify-content-center text-center">
<div class="row">
<div class="col">
<div class="mb-3">
<div class="mb-3">
<form method="get">
<label for="name" class="form-label mb-2">Name: </label>
<input
type="text"
class="form-control"
name=""
id=""
aria-describedby="helpId"
placeholder=""
/>
<label for ="Message" class="mt-2">Message: </label><br>
<textarea class="mt-2"rows = "4" cols = "30" id ="msg" name ="msg"></textarea> <br>
<input class="btn btn-light mt-3" type = "Submit" value = "Submit"/>
</form>
<small id="helpId" class="form-text text-muted">Any questions, contact us!</small>
</div>
</div>
</div>
</div>
</div>
</body>
</html>