summaryrefslogtreecommitdiffstats
path: root/templates/new_project.html
blob: 0efc2bd38ab1723e7e09fd55ee10d42226bd0ab2 (plain) (blame)
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
{% extends "base.html" %}
{% block title %}New project{% endblock %}
{% block content %}
<h1>Apply for a new project</h1>
<form action="new_project" method="post" class="cmxform">
	<p style="font-size: small; padding-bottom: 5px;">
	Please complete the form below to apply for a new project.
	</p>
	<fieldset>
		<ol>
			<li>
			<label for="name">project name</label>
			<input id="name" type="text" name="project_name" value="your project's name" onfocus="clearInput('name')"/>
			</li>
      <li><p style="margin-bottom:-10px;"><strong>How should I name my project?</strong></p><br/>
      We would be grateful if you could give your project an unambiguous name. For example, calling your
      project <em class="black">mafi3</em> would definitely NOT be unambiguous, but <em class="black">loginname_ss2010_mafi3</em> would be well chosen.<br/>
      We also do prefer lower-case letters, no white space and no dots in the project name. And there will be NO projects called <em class="black">test</em>.
      If you were just about to write 'test', forget it! No! There will be no test projects!
      </li>
			<li>
			<label for="desc">project description</label>
			<textarea id="desc" style="width: 70%;" type="text" name="project_desc" onfocus="clearInput('desc')" rows="10" maxlength="500">describe your project here</textarea>
			</li>
			<li>
			<fieldset>
        <legend>i want my project to be <strong><em>*</em></strong></legend>
					<label><input type="radio" name="priv" value="open" checked="checked" /> open</label>
					<label><input type="radio" name="priv" value="private" /> private</label>
			</fieldset>
			</li>
		</ol>
	</fieldset>
	<p><input type="submit" value="Submit" /></p>
</form>
<hr style="margin: 20px 0 10px; width: 40%; color: #C9DCA6;" />
<p style="width: 85%; font-size:11px; color:dark-gray; text-align:justify;">
<strong><em>*</em> It is recommended that your project is <em>open</em>. this means read- (but not write-) access for everyone (<em>open source!</em>).
  A <em>private</em> project will grant read- and write-access only to its members.</strong>
</p>
{% endblock %}