diff options
Diffstat (limited to 'app/views/project/newProject.ejs')
-rw-r--r-- | app/views/project/newProject.ejs | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/app/views/project/newProject.ejs b/app/views/project/newProject.ejs new file mode 100644 index 0000000..2101138 --- /dev/null +++ b/app/views/project/newProject.ejs @@ -0,0 +1,79 @@ +<% include ../templates/header %> + +</head> +<body> + <% include ../templates/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 ../templates/footer %> +</body> +</html> |