forked from pencil-code/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.php
127 lines (113 loc) · 3.52 KB
/
form.php
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
<!-- $Id$ -->
<?php
include "inc/header.inc";
?>
<div class="centcolumnpad">
<h1>
<img src="/pics/pencils_65x30.png">
Obtaining the <em>Pencil Code</em></h1>
<!-- Form -->
<form action="/cgi-bin/people/brandenb/form-eval.cgi" method="get">
<table width="90%" cellspacing=3 cellpadding=15 align=center
summary="Table for layout (wider margins)">
<tr><td>
<p>
<tr><td>
To get an idea about the user base of the Pencil Code, we need to
know a few things about you.
Please take the time and answer the following questions (questions
with <font color=red>*</font> are mandatory).
<!-- Identification -->
<p>
<table bgcolor="#d8d8f0" width="90%" border=1 cellpadding=20 align=center
summary="Table for layout (background color)">
<tr><td>
<table summary="Table for layout (arrange input fields)">
<tr><td>Name: <font color=red>*</font></td>
<td><input name="name" size=40 maxlength=60></td>
</tr>
<tr><td>Email: <font color=red>*</font></td>
<td><input name="email" size=40 maxlength=60></td>
</tr>
<tr><td>Country: <font color=red>*</font></td>
<td><input name="country" size=40 maxlength=60></td>
</tr>
<tr><td>Institution:</td>
<td><textarea name="institute" rows=3 cols=35
wrap=virtual></textarea></td>
</tr>
<!-- <tr><td>Type of usage: <font color=red>*</font></td> -->
<!-- <td> -->
<!-- <select size=1 name="usage_type"> -->
<!-- <option > Academic -->
<!-- <option value="Testing" > Just testing -->
<!-- <option value="Upgrading"> Upgrading from older version -->
<!-- <option selected > Other -->
<!-- </select> -->
<!-- </td> -->
<!-- </tr> -->
</table>
<!-- Research interests -->
<tr><td>Research interests:
<!-- <td> -->
<!-- <select name="res_interest" multiple> -->
<!-- <option> Turbulence -->
<!-- <option> MHD -->
<!-- <option value="Dynamos"> Dynamo theory -->
<!-- <option> Convection -->
<!-- <option value="Accretion"> Accretion discs -->
<!-- <option> Other -->
<!-- </select> -->
<table cellspacing=10
summary="Table for layout (three-column arrangement)">
<tr>
<td><input type=checkbox name="research"
value="Turbulence">Turbulence</td>
<td><input type=checkbox name="research"
value="MHD">MHD</td>
<td><input type=checkbox name="research"
value="Dynamos">Dynamo theory</td>
</tr>
<tr>
<td><input type=checkbox name="research"
value="Convection">Convection</td>
<td><input type=checkbox name="research"
value="Accretion">Accretion discs</td>
<td>Other: <input name="research_other" size=20 maxlength=60></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table cellspacing=10
summary="Table for layout (three-column arrangement)">
<tr><td>Platform you plan to run the code on:</td>
<td><input name="platform" size=20 maxlength=60></td>
</tr>
</table>
</td>
</tr>
<!-- Submit/Reset button-->
<tr><td>
<table summary="Table for layout (arrangement of submit/reset buttons)">
<tr>
<td width="20%">
<input type=submit value="Submit">
</td>
<td width="20%">
<input type=reset value="Clear">
</td>
</tr>
</table>
</td>
</tr>
</table>
</tr>
</table>
<p>
</form>
</div>
<?php
include "inc/footer.inc";
?>