-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
83 lines (78 loc) · 5.5 KB
/
contact.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
<!DOCTYPE html>
<html lang="en-au">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact - NOVA</title>
<meta name="tags" content="Crypto, Cryptocurrencies, CAPTCHA, AI, Machine Learning">
<meta name="author" content="Garv Shah">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:type" content="website">
<meta name="theme-color" content="#2d388a"/>
<meta name="description" content="Hello! We are the NOVA Team. Collectively, we are working towards a future where cryptocurrencies can be maintained through the use of proofs of human works (PoHs), paving the path for alternatives to cryptos as well as modern CAPTCHAs">
<meta property="og:image" content="https://the-nova-system.github.io/assets/img/NOVA_System_Logo.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon_32.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/nova-app-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="assets/img/nova-splash-512x512.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,700">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.6.1/css/pikaday.min.css">
<link rel="stylesheet" href="assets/css/Team-Boxed.css">
<link rel="stylesheet" href="https://s.pageclip.co/v1/pageclip.css" media="screen">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-lg fixed-top bg-white portfolio-navbar gradient">
<div class="container"><a class="navbar-brand logo" href="../">The NOVA System</a><button data-bs-toggle="collapse" class="navbar-toggler" data-bs-target="#navbarNav"><span class="visually-hidden">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="https://the-nova-system.github.io/old">Home</a></li>
<li class="nav-item"><a class="nav-link" href="https://github.com/The-NOVA-System">Github</a></li>
<li class="nav-item"><a class="nav-link" href="https://the-nova-system.github.io/nova_app/">App</a></li>
<li class="nav-item"><a class="nav-link" href="https://timelines.gitkraken.com/timeline/912935f2f00c40589588a302beae453f">Timeline</a></li>
<li class="nav-item"><a class="nav-link" href="https://the-nova-system.github.io/blog-old/">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="https://the-nova-system.github.io/old/contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<main class="page contact-page">
<section class="portfolio-block contact">
<div class="container">
<div class="heading">
<h2>Contact Us</h2>
</div>
<form action="https://send.pageclip.co/dCK42sJinGvUQf8fpxvtoDeZrsZNZE9L" class="pageclip-form" method="post">
<!-- Replace these inputs with your own. Make sure they have a "name" attribute! -->
<div class="mb-3"><label class="form-label" for="name">Your Name</label><input class="form-control item" id="name" type="text" name="name" required/></div>
<div class="mb-3"><label class="form-label" for="email">Your Email</label><input class="form-control item" id="email" type="email" name="email" required/></div>
<div class="mb-3"><label class="form-label" for="subject">Subject</label><input class="form-control item" id="subject" type="text" name="subject" required/></div>
<div class="mb-3"><label class="form-label" for="message">Message</label><textarea class="form-control item" id="message" type="text" name="body" required></textarea></div>
<!-- This button will have a loading spinner. Keep the inner span for best results. -->
<div class="mb-3"><button type="submit" class="pageclip-form__submit btn btn-primary btn-lg d-block w-100"><span>Send</span></button></div>
</form>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/smart-forms.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.6.1/pikaday.min.js"></script>
<script src="assets/js/theme.js"></script>
<script src="https://s.pageclip.co/v1/pageclip.js" charset="utf-8"></script>
<script>
const form = document.querySelector('.pageclip-form')
Pageclip.form(form, {
onResponse: function (error, response) {
setTimeout(function(){
window.location.href = '../';
},2000);
},
})
</script>
</body>
</html>