File tree Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,45 @@ Admin
125125
126126var signup = `
127127{{define "content"}}
128- Signup
128+ <div class="col-md-6 col-md-offset-3">
129+
130+ <form class="form-horizontal" action="/signup/" method="POST">
131+ <fieldset>
132+
133+ <!-- Form Name -->
134+ <legend>Sign Up for GoBlog</legend>
135+
136+ <!-- Text input-->
137+ <div class="form-group">
138+ <label class="col-md-4 control-label" for="email">E-mail address</label>
139+ <div class="col-md-6">
140+ <input id="email" name="email" type="text" placeholder="E-mail address" class="form-control input-md" required="">
141+
142+ </div>
143+ </div>
144+
145+ <!-- Password input-->
146+ <div class="form-group">
147+ <label class="col-md-4 control-label" for="password">Password</label>
148+ <div class="col-md-6">
149+ <input id="password" name="password" type="password" placeholder="Password" class="form-control input-md" required="">
150+
151+ </div>
152+ </div>
153+
154+ <!-- Button -->
155+ <div class="form-group">
156+ <label class="col-md-4 control-label" for="submit"></label>
157+ <div class="col-md-4">
158+ <button id="submit" name="submit" class="btn btn-success">Sign Me Up!</button>
159+ </div>
160+ </div>
161+
162+ </fieldset>
163+ </form>
164+
165+ </div>
166+
129167{{end}}
130168`
131169
You can’t perform that action at this time.
0 commit comments