-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (99 loc) · 3.82 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
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>abstract maker</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.10.1/css/mdb.min.css" rel="stylesheet">
</head>
<body>
<br>
<div class="container">
<div class="row">
<h1 style="text-align: center;">ABSTRACT MAKER</h1>
</div>
<div class="card">
<div class="row">
<div class="col-md-5">
<form ref='uploadForm' name='kk' id='uploadForm' action='/' method='post' style="padding-left: 100px;"
encType="multipart/form-data">
<p>Title: </p><input type="text" name="title" />
<p>Name: </p><input type="text" name="name" />
<p>Class: </p><input type="text" name="class" />
<p>Hall Ticket no.</p> <input type="text" name="ht" />
<p>Email</p> <input type="text" name="email" />
<p>Image</p> <input type="file" name="sampleFile" />
<p>content</p> <input type="text" name="Abs2" />
<input type='submit' value='Upload!' />
</form>
</div>
<div class="col-md-6">
<br>
<br>
<h2>Usage:</h2>
<p>This webapp helps you create abstracts in IEEE format. Fill in the author details and upload an image
consisting of content to get your abstract done.</p>
<p><b><strike>NOTE: Avoid having spaces and special characters in the image name.</b></p>
</strike><b>ANY FILE NAME ACCEPTED :P</b>
<p> Star my github repos if you like the app ;)</p>
</div>
</div>
<div class="row">
<div class="col-md-12"><br></div>
</div>
</div>
</div>
<br>
<!-- Footer -->
<footer class="page-footer font-small cyan darken-3">
<!-- Footer Elements -->
<div class="container">
<!-- Grid row-->
<div class="row">
<!-- Grid column -->
<div class="col-md-12 py-5">
<div class="mb-5 flex-center">
<!-- Facebook -->
<a class="fb-ic" href="https://www.facebook.com/saravanan.jodavula">
<i class="fab fa-facebook-f fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!-- Twitter -->
<!--Linkedin -->
<a class="li-ic" href="https://in.linkedin.com/in/saravanan-jodavula-3643b1174">
<i class="fab fa-linkedin-in fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Instagram-->
<a class="ins-ic" href="https://www.instagram.com/saravanan_jodavula/">
<i class="fab fa-instagram fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Pinterest-->
<a class="pin-ic" href="https://github.com/saravanan-jodavula">
<i class="fab fa-github fa-lg white-text fa-2x"> </i>
</a>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</div>
<!-- Footer Elements -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
<a href="https://github.com/saravanan-jodavula">Saravanan Jodavula</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</body>
</html>
<script lang="javascript">
var x = '/'
document.getElementById("uploadForm").action = x
console.log("Posted")
console.log(location.port)
</script>