-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.html
More file actions
123 lines (103 loc) · 4.32 KB
/
request.html
File metadata and controls
123 lines (103 loc) · 4.32 KB
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
119
120
121
122
123
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Local First</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!-- add font here -->
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="smartphone">
<div class="content">
<div class="head">
<img src="img/profile.png" alt="profile" class="profile">
<div class="dropdown">
<img src="img/settings.png" alt="settings" class="settings">
<div class="dropdown-content">
<a href="home.html">Switch to User</a>
<a href="#">Update Info</a>
<a href="#">Report User</a>
<a href="#">Help</a>
<a href="index.html">Logout</a>
</div> <!-- end of dropdown-content -->
</div><!-- end of dropdown -->
</div> <!-- end of head -->
<h2 class="header">Partnerships</h2>
<img class="back" src="img/back.png" alt="">
<div class="brown">
<h3>Inquiry Request</h3>
</div>
<p class="request">Why do you want to partner with us?</p>
<textarea name="name" class="textarea" rows="2" cols="35"></textarea>
<p class="request">What do you have to offer?</p>
<textarea name="name" class="textarea" rows="2" cols="35"></textarea>
<p class="request">How soon are you ready to partner?</p>
<input type="text" class="form-input" id="date" name="time" value="date" placeholder="date">
<label for="now" >Immediately</label>
<input type="radio" name="now" value="now" id="now">
<div class="container">
<!-- Trigger the modal with a button -->
<button type="button" class="button-black" data-toggle="modal" data-target="#myModal4">
Send
</button>
<!-- Modal -->
<div class="modal fade" id="myModal4" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Success!</h4>
</div>
<div class="modal-body">
<img class="modal-img" src="img/check.png" alt="">
<p>We sent your request to ABC Company</p>
<p>Stay tuned for their response!</p>
</div>
<div class="modal-footer">
<a href="business-home.html" class="button-black">
Close
</a>
</div>
</div>
</div> <!-- end of modal dialog -->
</div> <!-- end of modal-fade -->
</div> <!-- end of container -->
<div class="spacer"></div>
<footer class="footer">
<div class="nav">
<a href="business-home.html" >
<img src="img/home.png" class="nav" alt="">
<h5 class="footer-text">Home</h5>
</a>
</div>
<div class="nav">
<a href="partner.html" >
<img src="img/partner.jpg" class="nav" alt="">
<h5 class="footer-text">Partner</h5>
</a>
</div>
<div class="nav">
<a href="messages.html" >
<img src="img/messages.png" class="nav" alt="">
<h5 class="footer-text">Messages</h5>
</a>
</div>
<div class="nav">
<a href="offers.html">
<img src="img/offers.png" class="nav" alt="">
<h5 class="footer-text">Promos</h5>
</a>
</div>
</footer>
</div> <!-- end of content -->
</div> <!-- end of smartphone -->
<script src="js/scripts.js"></script>
</body>
</html>