-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
134 lines (117 loc) · 6.22 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Website Builder</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css"
integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<link href="css/bootstrap.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="font-awesome-4.7.0/css/font-awesome.css">
<link href="css/style.css" rel="stylesheet">
</head>
<body style="background:linear-gradient(#A3BCF1,#B2D3F4,#D2E4F2,#E6EDF3,#F2F3EE,#F8E7D4); padding-top: 50px; padding-bottom: 40px">
<div class="container">
<div class="row" style="padding-bottom: 30px">
<div class="col-12 text-center">
<span style="color: black; font-weight: lighter; font-size: 40px">Awesome Website Builder</span>
</div>
</div>
<div class="row" style="font-size: 26px; font-weight: lighter; color: #666">
<div class="col-10 offset-1"
style="background-color: white; border-radius: 0;padding: 35px; box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2)!important">
<div class="row">
<div class="col-12" style="font-size: 32px; color: #444; margin-bottom: 20px">
Enter Your Info Here
<hr>
</div>
</div>
<div class="row">
<div class="col-12">
<form id="webGenForm">
<label class="label-style">ABOUT</label>
<div class="form-group">
<input id="name" required type="text" class="form-control input"
placeholder="Full Name">
</div>
<div class="form-group">
<input id="job" type="text" class="form-control input"
placeholder="Job/Designation">
</div>
<div class="form-group">
<textarea id="bio" class="form-control input" placeholder="Your Bio"></textarea>
</div>
<div class="form-group">
<label style="font-size: 22px; color: #868E95">Profile Image:
</label>
<input id="image" type="file" class="form-control input in-img"
style="display: inline-block; width: auto" placeholder="Profile Picture">
</div>
<label class="label-style">CONTACT</label>
<div class="form-group">
<input id="email" required type="email" class="form-control input"
placeholder="Email Id">
</div>
<div class="form-group">
<input id="phone" type="tel" class="form-control input"
placeholder="Contact Number">
</div>
<div class="form-group">
<input id="address" type="text" class="form-control input"
placeholder="Address">
</div>
<label class="label-style">SOCIAL</label>
<div class="form-group">
<input id="fb" required type="url" class="form-control input"
placeholder="Link to Facebook Profile">
</div>
<div class="form-group">
<input id="twitter" type="tel" class="form-control input"
placeholder="Link to Twitter">
</div>
<div class="form-group">
<input id="linkedin" type="text" class="form-control input"
placeholder="Link to LinkedIn Profile">
</div>
<div class="form-group">
<input id="github" type="text" class="form-control input"
placeholder="Link to Github Profile">
</div>
<label class="label-style-2" id="explbl">EXPERIENCE +</label></i>
<i class="fa fa-plus"></i>
<hr>
<div id="expDiv">
</div>
<label class="label-style-2" id="edulbl">EDUCATION +</label>
<hr>
<div id="eduDiv">
</div>
<label class="label-style-2" id="skllbl">SKILLS +</label>
<hr>
<div id="sklDiv"></div>
<label class="label-style-2" id="achlbl">ACHIEVEMENTS +</label>
<hr>
<div id="achDiv"></div>
<div id="errorRegister" class="text-danger">
</div>
<div class="form-group">
<button id="genWebBtn" class="btn a-style">
Generate Website
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jszip.js"></script>
<script src="js/jquery-3.2.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>