-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
92 lines (82 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>DP Generator</title>
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<link rel="stylesheet" type="text/css" href="src/css/style.css">
<link rel="stylesheet" type="text/css" href="src/fonts/themify-icons.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway|Source+Sans+Pro&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>DP Generator</h1>
</header>
<main>
<section class="under">
<div>
<h2 style="color:rgb(177, 20, 72)">Display Picture (DP) Generator</h2>
<p style="color: rgb(255, 189, 66)">Upload photo to create your DP</p>
<p class="step">To generate your personalized DP</p>
</div>
<ul>
<li class="ti">Enter your name in the name field below</li>
<li class="ti">Upload your picture (for best experience, crop the picture to square)</li>
<li class="ti">Click on Create your own DP</li>
<li class="ti">Dont forget to share on
<span class="ti-facebook" style="color: rgb(177, 20, 72);font-family: 'Raleway', sans-serif;padding-left:3px; ">facebook</span>,
<span class="ti-twitter" style="color: rgb(255, 189, 66);font-family: 'Raleway', sans-serif; ">twitter</span>,
<span class="ti-instagram" style="color: greenyellow;font-family: 'Raleway', sans-serif; ">instagram</span>, and make sure you hashtag (#DP)</li>
</ul>
</section>
<section class="top">
<form enctype="multipart/form-data" action="" method="POST" onsubmit="event.preventDefault();">
<fieldset>
<legend class="ti-camera" style="color: rgb(255, 189, 66); padding-top: 5px;"></legend>
<div class="form-control">
<input placeholder="Name" required="" id="fullname" name="fullname" type="text">
</div>
<div class="image-editor">
<!-- <input type="file" class="cropit-image-input"> -->
<span class="btn btn-input fileinput-button">
<i class="ti-camera" style="color: rgb(177, 20, 72);"></i>
<span>Choose an image...</span>
<input id="file" name="file" type="file" class="cropit-image-input" required="">
<input type="hidden" name="image-data" class="hidden-image-data" />
</span>
<div class="form-control">
<button type="reset" class="btn btn-input change hide">
<i class="ti-image"></i>
<span>Change Image</span>
</button>
<button type="button" class="btn btn-input delete hide">
<i class="ti-cancel"></i>
<span>Remove</span>
</button>
</div>
<div class="cropit-preview"></div>
<div class="image-size-label" style="color: rgb(255, 189, 66)">
Resize image
</div>
<input type="range" class="cropit-image-zoom-input">
<input type="hidden" name="image-data" class="hidden-image-data" />
</div>
<div class="button">
<button value="submit" type="submit" class="kb-button create-dp">Create your own DP</button>
</div>
</fieldset>
</form>
</section>
</main>
<footer>
<p> © DP 2019. All Rights Reserved. Follow on
<a href="https://github.com/geektutor/dp" class="social">Github</p>
</footer>
<script src="src/js/jquery.min.js"></script>
<script src="src/js/jquery.cropit.js"></script>
<script src="src/js/main.js"></script>
</body>
</html>