-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.tmpl
40 lines (40 loc) · 1.44 KB
/
index.html.tmpl
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
<html>
<head>
<title>
LinkedIn Resume Generator
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body>
<div class="container">
<form class="form-horizontal" action="/resume" method="POST">
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<h1>LinkedIn Resume Generator</h1>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">LinkedIn profile URL</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="LinkedIn profile URL" name="url" value="https://www.linkedin.com/in/azylman" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Theme</label>
<div class="col-sm-10">
<select class="form-control" name="theme">
{{ range .Themes }}
<option value={{ . }} /> {{ . }} </option>
{{ end }}
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button class="btn btn-default" type="submit">Generate resume</button>
</div>
</div>
</form>
</div>
</body>
</html>