diff --git a/README.md b/README.md index 42dfb95..8fbd123 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# YelpCamp +# Camp Bug A campground social media site for sharing reviews, experiences, and advice about campgrounds from around the world This project is being completed as part of the Colt Steele Web Development Bootcamp. The general idea for the site is to house a social community of camp-goers where they can share reviews, insights, recommendations, and experiences. diff --git a/package-lock.json b/package-lock.json index e4a93b5..ac9b486 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "yelpcamp", + "name": "campbug", "version": "1.0.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index f4e96dd..5b06adc 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "yelpcamp", + "name": "campbug", "version": "1.0.0", "description": "Capstone Project", "main": "app.js", diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index b14818a..d0b3274 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -35,3 +35,6 @@ margin-top: 20px; } +form { + margin: 0 auto; +} \ No newline at end of file diff --git a/routes/index.js b/routes/index.js index 3e21e60..22098c9 100644 --- a/routes/index.js +++ b/routes/index.js @@ -34,7 +34,7 @@ router.post("/register", function (req, res) { return res.redirect("back"); } passport.authenticate("local")(req, res, function () { - req.flash("success", "Welcome to YelpCamp, " + user.username); + req.flash("success", "Welcome to Camp Bug, " + user.username); res.redirect("/campgrounds"); }); }); diff --git a/views/campgrounds/edit.ejs b/views/campgrounds/edit.ejs index de90b56..d73401d 100644 --- a/views/campgrounds/edit.ejs +++ b/views/campgrounds/edit.ejs @@ -3,7 +3,7 @@