aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/views/newproject.ejs
diff options
context:
space:
mode:
authorDennis Eriksen <dennis.se@gmail.com>2013-04-29 11:23:49 +0200
committerDennis Eriksen <dennis.se@gmail.com>2013-04-29 11:23:49 +0200
commit533a47028d78ed8f69440049d05c2786fe73f94b (patch)
tree971772ccb4d7e444f3a06b5b5a361f61bde265fb /views/newproject.ejs
parentfixed small bug (diff)
downloadDivid-533a47028d78ed8f69440049d05c2786fe73f94b.tar.gz
added new project page
Diffstat (limited to 'views/newproject.ejs')
-rw-r--r--views/newproject.ejs81
1 files changed, 81 insertions, 0 deletions
diff --git a/views/newproject.ejs b/views/newproject.ejs
new file mode 100644
index 0000000..3d0ff7c
--- /dev/null
+++ b/views/newproject.ejs
@@ -0,0 +1,81 @@
+<% include header %>
+
+</head>
+<body>
+ <% include navbar %>
+
+ <!-- Wrapper
+ ================================================== -->
+ <div class="container" id="wrapper">
+ <div class="row-fluid">
+
+
+ <form class="form-horizontal" action="/project/new" method="post">
+ <fieldset>
+
+ <legend>Lag nytt prosjekt</legend>
+
+ <div class="control-group">
+ <label class="control-label">Prosjektnavn</label>
+ <div class="controls">
+ <div class="input-prepend">
+ <span class="add-on">u/fb.dennis.se/</span>
+ <input id="projectname" name="projectname" placeholder="" class="span12" type="text" required="">
+ </div>
+ <p class="help-block">Navnet på prosjektet du vil lage</p>
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label">Beskrivelse</label>
+ <div class="controls">
+ <textarea id="description" name="description" class="span6">Beskrivelse av prosjekt</textarea>
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label">Valuta</label>
+ <div class="controls">
+ <input id="currency" name="currency" type="text" placeholder="kr" class="span2" required="">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label">Invite only eller offentlig?</label>
+ <div class="controls">
+ <label class="radio">
+ <input type="radio" name="public" value="Invite only" checked="checked">
+ Invite only
+ </label>
+ <label class="radio">
+ <input type="radio" name="public" value="Offentlig">
+ Offentlig
+ </label>
+ </div>
+ </div>
+
+
+ <div class="control-group">
+ <label class="control-label">Double Button</label>
+ <div class="controls">
+ <button type="submit" id="button1id" name="button1id" class="btn btn-primary">Opprett prosjekt</button>
+ <button type="reset" id="button2id" name="button2id" class="btn">Nullstill</button>
+ </div>
+ </div>
+
+ </fieldset>
+ </form>
+
+
+
+
+
+
+
+ </div><!-- /div.row -->
+ </div><!-- /div.#wrapper -->
+
+
+<% include footer %>
+</body>
+</html>