-
Notifications
You must be signed in to change notification settings - Fork 0
/
classmates.html
66 lines (61 loc) · 2.47 KB
/
classmates.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
<head>
<title>同学聚会</title>
</head>
<body>
<div class="container">
<h3>9924 毕业十年</h3>
<pre>你望着自己越来越少的头发、或越来越丰腴的腰肢,才发现时间咻~~~~~~~的一下,居然十年过去了。
十年前,你通宵达旦灌水、玩游戏,
十年后,你只能望着电脑哄着娃;
十年前,你奋发图强写程序,为了梦想,
十年后,你依然奋发图强写程序,为了养家;
十年前,你觉得没有比“百人斩”更恐怖的关卡,
十年后,你发现上司才是GAME是否OVER的终极BOSS。
十年后的你,身在何方?
十年后的你,是否仍在追逐你的梦想?
十年后的你,是否寻找到那份真挚的感情?
十年后的你,是否已经承担起家庭的重任?
十年后的你,是否还保留着当初“青葱”的小模样儿?
让我们相约12.21,共同见证十年的成长。</pre>
{{> survey}}
</div>
<a href="https://github.com/jovezhong/classmates" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
</body>
<template name="survey">
<form class="form-horizontal" method="POST" id="myform">
{{#each items}}
<div class="control-group">
{{#if inputIs "legend"}}
<legend>{{label}}</legend>
{{/if}}
{{#if inputIs "text"}}
<label class="control-label" for="{{key}}">{{label}}</label>
<div class="controls">
<input type="text" id="{{key}}" name="{{key}}" placeholder="{{value}}" {{requiredStr}}>
</div>
{{/if}}
{{#if inputIs "password"}}
<label class="control-label" for="{{key}}">{{label}}</label>
<div class="controls">
<input type="password" class="passcode" id="{{key}}" name="{{key}}" placeholder="{{value}}" {{requiredStr}}> <span class="passcodeOK"></span>
</div>
{{/if}}
{{#if inputIs "radio"}}
<label class="control-label" for="{{key}}">{{label}}</label>
<div class="controls">
{{#each options}}
<input type="radio" name="{{key}}" value="{{option}}"> {{option}}
{{/each}}
</div>
{{/if}}
{{#if inputIs "textarea"}}
<label class="control-label" for="{{key}}">{{label}}</label>
<div class="controls">
<textarea rows="3" id="{{key}}" name="{{key}}" placeholder="{{value}}"></textarea>
</div>
{{/if}}
</div>
{{/each}}
<button class="btn btn-large btn-primary" type="submit">填完了</button>
</form>
</template>