-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpayment.html
More file actions
78 lines (76 loc) · 3.4 KB
/
Copy pathpayment.html
File metadata and controls
78 lines (76 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PitchDesk</title>
<link rel="shortcut icon" type="image/png" href="images/logo.png"/>
<link rel="stylesheet" href="css/style-test.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&family=Outfit:wght@100;200;300;400;600&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<section class="header-home">
<nav>
<a href="index.html"><img src="images/pd_linear_logo.png" alt=""></a>
<div class="nav-links1" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="categories.html">CATEGORIES</a></li>
<li><a href="plans.html">SUBSCRIPTION</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="pay-box">
<h1>REGISTRATIONS CLOSED!</h1>
<!-- <img src="images/10rs.jpg.jpeg" alt=""> -->
<!-- <div class="enter">
<h3 class="top-h3">COMPANY NAME</h3>
<input type="text" required/>
<h3>BATCH</h3>
<input type="text" required/>
<h3>COMPANY REGISTRATION ID</h3>
<input type="text" required/>
<p>To get your registration ID, call +91 95097 92473 after making your payment.</p>
<button type="button"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdeeCHoGiLFL0GLkrNtghDtsaf_xxUxVaJI9baPtZFkC8zg2A/viewform?usp=sf_link" target="_blank">NEXT</a></button>
</div> -->
<div class="pay-form">
<!-- <form action="https://docs.google.com/forms/d/e/1FAIpQLSdeeCHoGiLFL0GLkrNtghDtsaf_xxUxVaJI9baPtZFkC8zg2A/viewform?usp=sf_link" target="_blank">
<label for="c-name">COMPANY NAME</label><br>
<input type="text" name="c-name" class="input-f" required><br>
<label for="batch">BATCH</label><br>
<input type="text" name="batch" class="input-f" required><br>
<label for="regid">COMPANY REGISTRATION ID</label><br>
<input type="text" name="regid" class="input-f" pattern="[A-Za-z]{1}\d{6}" required><br>
<p>To get your registration ID, call +91 95097 92473 after <br>making your payment.</p><br>
<button type="submit">NEXT</button>
</form> -->
</div>
</div>
</section>
<!-- ----- JS for Toggle Menu ----- -->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.opacity = "1";
// navLinks.style.right = "0";
navLinks.style.zIndex = 1;
}
function hideMenu() {
navLinks.style.opacity = "0";
// navLinks.style.right = "-200px";
navLinks.style.zIndex = -1;
}
</script>
</body>
</html>