-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCreateCard.jsx
64 lines (53 loc) · 2.12 KB
/
CreateCard.jsx
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
/** @jsx React.DOM */
'use strict'
var React = require('react')
var mui = require('material-ui')
var RaisedButton = mui.RaisedButton
var FlatButton = mui.FlatButton
var Dialog = mui.Dialog
require("./node_modules/bootstrap/less/bootstrap.less")
require("./styles/CreateCard.less")
module.exports = React.createClass({
displayName: 'CreateCard',
render: function(){
return (
<div className="Create">
<form>
<div className="form-padding">
<div className="form-group">
<label htmlFor="title"><strong>Title</strong></label>
<input type="text" className="form-control" placeholder="Enter a title for the project"/>
</div>
<div className="form-group">
<label htmlFor="exampleInputPassword1"><strong>Description</strong></label>
<textarea className="form-control" placeholder="Enter a description of the issue" rows="3"></textarea>
</div>
<div className="form-flex">
<div className="form-group">
<label htmlFor="exampleInputFile"><strong>Ticket Link</strong></label>
<input type="text" id="exampleInputFile" className="form-control" placeholder="Paste a link to Jira"/>
</div>
<div className="form-group">
<label htmlFor="exampleInputFile"><strong>Bounty</strong></label>
<input type="text" id="exampleInputFile" className="form-control" placeholder="Enter a dollar amount"/>
<p className="help-block">Motivosity Amount</p>
</div>
</div>
</div>
<div className="form-actions">
<FlatButton
className="bh-RaisedButton"
label="Cancel"
secondary={true}
/>
<RaisedButton
className="bh-RaisedButton"
label="Create a New Bounty"
primary={true}
/>
</div>
</form>
</div>
)
}
})