-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
121 lines (116 loc) · 5.03 KB
/
index.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
119
120
121
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Bootstrap css and javascript -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="public/css/style.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Ubuntu&display=swap" rel="stylesheet">
<!-- For Icons -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- Pop up -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<title>Sahayak</title>
<script>
var global = global || window;
var Buffer = Buffer || [];
var process = process || {
env: {
DEBUG: undefined
},
version: []
};
</script>
</head>
<body>
<header class="header">
<a class="logo" href="index.html">Sahayak</a>
<nav>
<div class="header_menu">
<a name="Live" href="video.html">Video call</a>
<a name="Faq" href="faq.html">FAQ</a>
<a name="Contact" href="mailto:[email protected]" target="_self">Contact</a>
</div>
</nav>
</header>
<section class="home_intro">
<div class="video-background prllx">
<div class="home_intro_videos">
<video class="intro-loop" autoplay loop muted playsinline>
<source src="public/videos/Digital_Grapes.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="home_titles">
<h1 class="title">
<span>Upload and view<br>files,</span>
<span>safe and <br>secure!</span>
</h1>
<h2 class="baseline">Be 100% assure about all your documents.</h2>
</section>
<section id="second_section">
<div class="all_buttons">
<div>
<h2 class="button_about">Get document</h2>
<div class="input-group mb-3 search">
<input type="text" class="form-control" id="img_link" placeholder="Image Link" aria-label="Recipient's username" aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-primary" type="button" id="button-addon2">Search</button>
</div>
</div>
</div>
<div>
<h2 class="button_about">Upload document</h2>
<div class="input-group mb-3 box">
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile02">
<label class="custom-file-label label-1" for="inputGroupFile02" aria-describedby="inputGroupFileAddon02">Choose file</label>
</div>
<div class="input-group-append">
<span class="input-group-text btn btn-primary" id="inputGroupFileAddon02">Upload</span>
</div>
</div>
<script type="application/javascript">
$('input[type="file"]').change(function(e) {
var fileName = e.target.files[0].name;
$('.label-1').html(fileName);
});
</script>
</div>
<div>
<h2 class="button_about">Verify document</h2>
<div class="input-group verify">
<input type="text" class="form-control" placeholder="Transaction Hash" id="Txn_Hash" aria-label="Recipient's username with two button addons" aria-describedby="button-addon4">
<div class="input-group mb-3">
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile03">
<label class="custom-file-label label-2" for="inputGroupFile03" aria-describedby="inputGroupFileAddon03">Choose file</label>
</div>
</div>
<!-- <script type="application/javascript">
$('input[type="file"]').change(function(e) {
var fileName = e.target.files[0].name;
$('.label-2').html(fileName);
});
</script> -->
<div class="input-group-append" id="button-addon4">
<button class="btn btn-primary" type="button" id="Ver2ver">Verify</button>
<button class="btn btn-primary" type="button" id="Timeline2ver">Timeline</button>
</div>
</div>
</div>
</div>
</section>
<script type="text/javaScript" src="./dist/bundle.js"></script>
<footer id="footer">
<div class="footer-text">
<p>Made with ❤ by Ether_bots</p>
<p>© Copyright 2020</p>
</div>
</footer>
</body>
</html>