forked from codeforamerica/bizfriendly-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-category.html
82 lines (78 loc) · 4.28 KB
/
new-category.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
layout: default
title: Add a new category
js: new-category
---
<div id="new-category">
<div id="subnav" class="row hidden-xs">
<ul class="list-inline col-xs-12 col-sm-8 col-sm-offset-3">
<li class="col-sm-4 col-md-3"><a class="active">Content Creator</a></li>
<li class="col-sm-4 col-md-3 col-md-offset-1"><a href="teaching-guide.html">Teaching Guide</a></li>
<li class="col-sm-4 col-md-3 col-md-offset-1"><a href="content-requests.html">Content Requests</a></li>
</ul>
</div>
<div id="subheader" class="row">
<div class="col-sm-offset-1">
<h1>Use the form below to add a skill category to BizFriend.ly</h1>
<p>If you're new to creating content, we recommend checking out the <a href="#">Teaching Guide</a> before you begin.</p>
</div>
<div class="alert alert-info login-required col-sm-offset-1">
You'll need to create a BizFriend.ly account before you can create a lesson. <a href="signup.html">Sign up</a> then come back here.
</div>
</div>
<section id="main" class="row">
<form role="form" class="col-sm-offset-1 col-sm-8">
<legend>Skill Category Information</legend>
<p>To teach a skill that is new to BizFriend.ly, you'll have to provide some information that helps others know why they should learn this skill.</p>
<div class="form-group">
<input type="text" class="form-control" id="new-skill-name" placeholder="New Skill Name">
</div>
<div class="form-group">
<textarea id="new-skill-description" class="form-control" placeholder="Description of new skill" rows="4"></textarea>
</div>
<div class="col-sm-6 col-md-5 col-lg-4">
<!--<button id="preview" type="button" class="btn btn-blue">Preview</button>-->
<button id="save-draft" type="button" class="btn btn-default">Save Draft</button>
<button id="submit" type="button" class="btn btn-primary">Submit</button>
</div>
<div class="col-sm-6">
<input id="terms" type="checkbox" checked> <span class="bold">Agree to Terms</span>
<p><small>When you create new content on BizFriend.ly you’re agreeing to share with the community. All content on BizFriend.ly is licensed under a <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.</small></p>
</div>
<div id="form-alert" class="hidden alert alert-danger"></div>
</form>
</section>
<!-- Modal -->
<div class="modal fade" id="previewModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title"></h4>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!-- Modal -->
<div class="modal fade" id="submissionModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Nice Work!</h4>
</div>
<div class="modal-body">
<p>You created a new skill called <span class="skill-name orange"></span></p>
<p>To ensure high quality content on BizFriend.ly, your skill will be reviewed before it goes live.</p>
<a type="button" class="btn btn-default" href="/new-category.html">Create Another</a>
<a type="button" class="btn btn-default" href="/profile.html">See What You've Created</a>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
</div><!-- /.modal -->