-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form.html
110 lines (77 loc) · 4.49 KB
/
Form.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
<!DOCTYPE html>
<html>
<title>A2ZNITR - PDF Reader</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./form/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display&display=swap" rel="stylesheet" /><meta property="og:type" content="website" />
<meta property="og:url" content="https://www.a2znitr.tech/" />
<meta property="og:image" content="https://www.a2znitr.tech/assets/logo-sq.png" />
<meta property="og:image:width" content="806" />
<meta property="og:image:height" content="280" /><script async src="https://www.googletagmanager.com/gtag/js?id=G-JNYWKT3CEP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-JNYWKT3CEP");
</script>
<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/normalize/5.0.0/normalize.min.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script type="text/javascript" src="./form/index.js"></script>
<style>
</style>
</head>
<body onload="listenForFileUpload()" style="margin: 0px">
<div class="final-form mx-auto" id="adobe-dc-view">
<div class="col-sm-12 mx-auto col-md-12 form-container px-0">
<div class="row mx-auto">
<div class="col-11 col-md-11 mx-auto form-container2">
<h2 class="form-container2-title">Upload Your PDF File</h2>
<div class="mt-4">
<div class="fileup row mx-auto">
<div class="col-12 mx-auto col-md-12 uploader-sec">
<!-- <label>File </label> -->
<input class="col-12 col-md-12" id="file-picker" type="file" name="file-picker"
accept="application/pdf" hidden required />
<span id="file-chosen" class="text-center"><span class="text-white">or drop your pdf
file here</span><br>No file chosen</span>
<label class="loadfile col-12 col-md-12" for="file-picker"></label>
<label class="loadfilelabel" for="file-picker"><i
class="fa fa-file-pdf-o p-1"></i>Choose file</label>
<img src="https://www.pngkit.com/png/full/416-4163378_view-icon-view-icon-adobe-pdf-icon.png"
class="img-fluid mx-auto uploder-icon" alt="png" unselectable="no" />
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ********notes section******** -->
<div class="col-sm-12 col-md-12 mx-auto credit-container px-0">
<div class="row mx-auto">
<div class="col-11 col-md-11 mx-auto">
<div class="row">
<div class="col-12 col-md-12 pdf-details-imp px-0">
<h2>Note</h2>
<p class="px-3">The Document that would be uploaded here never goes to the server it's only
for user's better reading experience and Most of the Notes available at A2ZNITR are
contributed by Someone and We are immensely grateful to those for such contributions. We
would be glad to have more contributors on board and you can also aid us with your
material. Also, if you are in search of any specific notes/books you can reach us out
by filling the form given bellow </p>
</div>
</div>
</div>
</div>
</div>
<!-- ******** / notes section******** -->
</div>
<script type="text/javascript" src="https://documentservices.adobe.com/view-sdk/viewer.js"></script>
</body>
</html>