forked from shy2850/node-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 973 Bytes
/
index.html
File metadata and controls
44 lines (39 loc) · 973 Bytes
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
<!DOCTYPE HTML >
<html>
<head>
<meta charset="utf-8">
<title>shy2850.tk</title>
<style>
html, body{
padding:0;
list-style: decimal;
}
h2{
text-align: center;
}
</style>
</head>
<body>
<hr>
<div id="hd">
<% echo(response);
echo('你好啊') %>
</div>
<div id="bd">
<h2><a href="demo/login/login.html">一个表单提交的登录页面</a></h2>
<div id="form0">
<form action="/upload?uploadUrl=static" enctype="multipart/form-data" method="post">
<input type="file" name="upload" multiple="multiple" onchange="this.parentNode.submit();"> <input type="submit" value="Upload">
</form>
</div>
<% for(var i = 0; i < 9; i++) {%>
<h2><% if(i%2==0){ %>Welcome <%} else{%>YOU<%} %></h2>
<% } %>
</div>
<div id="ft">
</div>
<script type="text/html">
$include[nodeLib/common/module.js]
</script>
</body>
</html>