File tree 5 files changed +37
-5
lines changed
5 files changed +37
-5
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,5 @@ twbs:bootstrap
21
21
underscore
22
22
iron:router@1.0.0-rc.1
23
23
sacha:spin
24
+ accounts-password
25
+ ian:accounts-ui-bootstrap-3
Original file line number Diff line number Diff line change
1
+ accounts-base@1.2.1
2
+ accounts-password@1.1.3
3
+ anti:i18n@0.4.3
1
4
autoupdate@1.2.3
2
5
babel-compiler@5.8.24_1
3
6
babel-runtime@0.1.4
@@ -14,19 +17,22 @@ check@1.0.6
14
17
ddp@1.2.2
15
18
ddp-client@1.2.1
16
19
ddp-common@1.2.1
20
+ ddp-rate-limiter@1.0.0
17
21
ddp-server@1.2.1
18
22
deps@1.0.9
19
23
diff-sequence@1.0.1
20
24
ecmascript@0.1.5
21
25
ecmascript-collections@0.1.6
22
26
ejson@1.0.7
27
+ email@1.0.7
23
28
es5-shim@4.1.13
24
29
fastclick@1.0.7
25
30
geojson-utils@1.0.4
26
31
hot-code-push@1.0.0
27
32
html-tools@1.0.5
28
33
htmljs@1.0.5
29
34
http@1.1.1
35
+ ian:accounts-ui-bootstrap-3@1.2.83
30
36
id-map@1.0.4
31
37
insecure@1.0.4
32
38
iron:controller@1.0.12
@@ -40,6 +46,7 @@ iron:url@1.0.11
40
46
jquery@1.11.4
41
47
launch-screen@1.0.4
42
48
livedata@1.0.15
49
+ localstorage@1.0.5
43
50
logging@1.0.8
44
51
meteor@1.1.9
45
52
meteor-base@1.0.1
@@ -49,21 +56,27 @@ mobile-experience@1.0.1
49
56
mobile-status-bar@1.0.6
50
57
mongo@1.1.2
51
58
mongo-id@1.0.1
59
+ npm-bcrypt@0.7.8_2
52
60
npm-mongo@1.4.39_1
53
61
observe-sequence@1.0.7
54
62
ordered-dict@1.0.4
55
63
promise@0.5.0
56
64
random@1.0.4
65
+ rate-limit@1.0.0
57
66
reactive-dict@1.1.2
58
67
reactive-var@1.0.6
59
68
reload@1.1.4
60
69
retry@1.0.4
61
70
routepolicy@1.0.6
62
71
sacha:spin@2.3.1
72
+ service-configuration@1.0.5
63
73
session@1.1.1
74
+ sha@1.0.4
64
75
spacebars@1.0.7
65
76
spacebars-compiler@1.0.7
77
+ srp@1.0.4
66
78
standard-minifiers@1.0.1
79
+ stylus@2.511.0_2
67
80
templating@1.1.4
68
81
templating-tools@1.0.0
69
82
tracker@1.0.9
Original file line number Diff line number Diff line change
1
+ Accounts . ui . config ( {
2
+ passwordSignupFields : 'USERNAME_ONLY'
3
+ } ) ;
Original file line number Diff line number Diff line change 1
1
< template name ="layout ">
2
2
< div class ="container ">
3
- < header class ="navbar navbar-default " role ="navigation ">
4
- < div class ="navbar-header ">
5
- < a class ="navbar-brand " href ="{{pathFor 'postsList'}} "> Microscope</ a >
6
- </ div >
7
- </ header >
3
+ {{> header}}
8
4
< div id ="main ">
9
5
{{> yield}}
10
6
</ div >
Original file line number Diff line number Diff line change
1
+ < template name ="header ">
2
+ < nav class ="navbar navbar-default " role ="navigation ">
3
+ < div class ="navbar-header ">
4
+ < button type ="button " class ="navbar-toggle collapsed " data-toggle ="collapse " data-target ="#navigation ">
5
+ < span class ="sr-only "> Toggle navigation</ span >
6
+ < span class ="icon-bar "> </ span >
7
+ < span class ="icon-bar "> </ span >
8
+ < span class ="icon-bar "> </ span >
9
+ </ button >
10
+ < a class ="navbar-brand " href ="{{pathFor 'postsList'}} "> Microscope</ a >
11
+ </ div >
12
+ < div class ="collapse navbar-collapse " id ="navigation ">
13
+ < ul class ="nav navbar-nav navbar-right ">
14
+ {{> loginButtons}}
15
+ </ ul >
16
+ </ div >
17
+ </ nav >
18
+ </ template >
You can’t perform that action at this time.
1 commit comments
Vivais commentedon Dec 4, 2017
In windows i have to add session module:
meteor add session