-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
35 lines (34 loc) · 1.42 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Shows Desired Price</title>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/popup.css">
</head>
<body>
<img src="assets/images/r-128.png" alt="logo">
<br>
<form method="POST" action="http://localhost/radicals/radi_insert.php/">
url:
<input type="text" name="url" id="url">
₹:
<input type="text" name="t_price" placeholder="Enter Desired Price " value="0" id="price"required>
e-mail:
<input type="email" name="email" placeholder="[email protected]" id="email" required>
<button>SUBMIT</button>
</form>
<br>
<a href="aboutus.html" target="_blank">more >><a>
<script
src="assets/js/jquery.js"
integrity=""
crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.4.0/cjs/popper.min.js"
integrity="sha256-OH05DFHUWzr725HmuHo3pnuvUUn+TJuj8/Qz9xytFEw=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/popup.js"></script>
</body>
</html>