diff --git a/rpg-docs/.meteor/.finished-upgraders b/rpg-docs/.meteor/.finished-upgraders
index 68df3d8d..8a761038 100644
--- a/rpg-docs/.meteor/.finished-upgraders
+++ b/rpg-docs/.meteor/.finished-upgraders
@@ -5,3 +5,4 @@
notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
+notices-for-facebook-graph-api-2
diff --git a/rpg-docs/.meteor/packages b/rpg-docs/.meteor/packages
index e35c0bc6..f650cbb2 100644
--- a/rpg-docs/.meteor/packages
+++ b/rpg-docs/.meteor/packages
@@ -14,7 +14,6 @@ reactive-var
underscore
aldeed:collection2
differential:vulcanize
-msavin:mongol
matb33:collection-hooks
zimme:collection-softremovable
momentjs:moment
diff --git a/rpg-docs/.meteor/release b/rpg-docs/.meteor/release
index 41f2e623..151347b8 100644
--- a/rpg-docs/.meteor/release
+++ b/rpg-docs/.meteor/release
@@ -1 +1 @@
-METEOR@1.0.4.2
+METEOR@1.0.5
diff --git a/rpg-docs/.meteor/versions b/rpg-docs/.meteor/versions
index 568d1425..9c7ed8b9 100644
--- a/rpg-docs/.meteor/versions
+++ b/rpg-docs/.meteor/versions
@@ -4,10 +4,8 @@ accounts-ui@1.1.5
accounts-ui-unstyled@1.1.7
aldeed:collection2@2.3.2
aldeed:simple-schema@1.3.0
-aldeed:template-extension@3.4.3
amplify@1.0.0
autoupdate@1.2.0
-babrahams:editable-json@0.3.11
base64@1.0.3
binary-heap@1.0.3
blaze@2.1.0
@@ -16,8 +14,7 @@ boilerplate-generator@1.0.3
callback-hook@1.0.3
check@1.0.5
coffeescript@1.0.6
-dburles:collection-helpers@1.0.2
-dburles:mongo-collection-instances@0.3.3
+dburles:collection-helpers@1.0.3
ddp@1.1.0
deps@1.0.7
differential:vulcanize@0.0.3
@@ -25,7 +22,6 @@ ejson@1.0.6
email@1.0.6
fastclick@1.0.3
geojson-utils@1.0.3
-gwendall:session-json@0.1.7
html-tools@1.0.4
htmljs@1.0.4
http@1.1.0
@@ -41,7 +37,6 @@ iron:router@1.0.7
iron:url@1.0.7
jquery@1.11.3_2
json@1.0.3
-lai:collection-extensions@0.1.3
launch-screen@1.0.2
less@1.0.13
livedata@1.0.13
@@ -50,14 +45,12 @@ logging@1.0.7
matb33:collection-hooks@0.7.11
meteor@1.1.5
meteor-platform@1.2.2
-meteortoys:toykit@0.2.1
mike:mocha@0.5.2
minifiers@1.1.4
minimongo@1.0.7
mobile-status-bar@1.0.3
momentjs:moment@2.9.0
mongo@1.1.0
-msavin:mongol@1.0.5
npm-bcrypt@0.7.8_1
observe-sequence@1.0.5
ordered-dict@1.0.3
diff --git a/rpg-docs/Model/Users/Users.js b/rpg-docs/Model/Users/Users.js
new file mode 100644
index 00000000..95d0c399
--- /dev/null
+++ b/rpg-docs/Model/Users/Users.js
@@ -0,0 +1,35 @@
+Schema = {};
+
+Schema.User = new SimpleSchema({
+ username: {
+ type: String,
+ regEx: /^[a-z0-9A-Z_]{3,15}$/
+ },
+ emails: {
+ type: [Object],
+ // this must be optional if you also use other login services like facebook,
+ // but if you use only accounts-password, then it can be required
+ optional: true
+ },
+ "emails.$.address": {
+ type: String,
+ regEx: SimpleSchema.RegEx.Email
+ },
+ "emails.$.verified": {
+ type: Boolean
+ },
+ createdAt: {
+ type: Date
+ },
+ services: {
+ type: Object,
+ optional: true,
+ blackbox: true
+ },
+ roles: {
+ type: [String],
+ optional: true
+ }
+});
+
+Meteor.users.attachSchema(Schema.User);
diff --git a/rpg-docs/client/views/GeneralCSS/globalDetail.css b/rpg-docs/client/views/GeneralCSS/globalDetail.css
index 318ceb8c..d1fb07ec 100644
--- a/rpg-docs/client/views/GeneralCSS/globalDetail.css
+++ b/rpg-docs/client/views/GeneralCSS/globalDetail.css
@@ -29,7 +29,7 @@
padding: 24px;
}
-.red-button {
+html /deep/ .red-button {
background: #d23f31;
color: #fff;
margin-top: 16px;
diff --git a/rpg-docs/client/views/character/characterSettings/characterSettings.html b/rpg-docs/client/views/character/characterSettings/characterSettings.html
new file mode 100644
index 00000000..56f713b5
--- /dev/null
+++ b/rpg-docs/client/views/character/characterSettings/characterSettings.html
@@ -0,0 +1,3 @@
+
+
+
diff --git a/rpg-docs/client/views/character/characterSettings/characterSettings.js b/rpg-docs/client/views/character/characterSettings/characterSettings.js
new file mode 100644
index 00000000..b07cd07a
--- /dev/null
+++ b/rpg-docs/client/views/character/characterSettings/characterSettings.js
@@ -0,0 +1,3 @@
+Template.characterSettings.events({
+
+});
diff --git a/rpg-docs/client/views/character/characterSettings/deleteCharacterConfirmation.html b/rpg-docs/client/views/character/characterSettings/deleteCharacterConfirmation.html
new file mode 100644
index 00000000..a941445c
--- /dev/null
+++ b/rpg-docs/client/views/character/characterSettings/deleteCharacterConfirmation.html
@@ -0,0 +1,9 @@
+
+
+ To continue type "{{name}}" into the box below.
+
+