aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/views/newProject.ejs
diff options
context:
space:
mode:
authorDennis Eriksen <dennis.se@gmail.com>2013-05-25 11:17:42 +0200
committerDennis Eriksen <dennis.se@gmail.com>2013-05-25 11:17:42 +0200
commite582c3b84c6090b08f33d599c354968fcd868d14 (patch)
treeb6de1b7b1f708bf9126ccb709d5129e91a67c7d5 /views/newProject.ejs
parentchanged what gets collected (diff)
downloadDivid-e582c3b84c6090b08f33d599c354968fcd868d14.tar.gz
moved and renamed files to match the filesetup we want.
havebeen using a dev-setup till now.
Diffstat (limited to 'views/newProject.ejs')
-rw-r--r--views/newProject.ejs79
1 files changed, 0 insertions, 79 deletions
diff --git a/views/newProject.ejs b/views/newProject.ejs
deleted file mode 100644
index facedcf..0000000
--- a/views/newProject.ejs
+++ /dev/null
@@ -1,79 +0,0 @@
-<% 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>
-
- <h1><legend><%= title %></legend></h1>
-
- <div class="control-group">
- <label class="control-label">Prosjektnavn</label>
- <div class="controls">
- <input id="projectname" name="name" placeholder="" type="text" required="" maxlength="25">
- <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"></textarea>
- </div>
- </div>
-
- <div class="control-group">
- <label class="control-label">Valuta</label>
- <div class="controls">
- <span class="input-small uneditable-input">kr</span>
- <!-- <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>