diff options
Diffstat (limited to 'views')
| -rwxr-xr-x | views/home.ejs | 3 | ||||
| -rw-r--r-- | views/partials/edit-profile.ejs | 5 | ||||
| -rw-r--r-- | views/partials/header.ejs | 2 | ||||
| -rw-r--r-- | views/partials/sign-in.ejs | 4 | ||||
| -rw-r--r-- | views/profile.ejs | 2 | ||||
| -rw-r--r-- | views/projects/list-projects.ejs | 3 |
6 files changed, 11 insertions, 8 deletions
diff --git a/views/home.ejs b/views/home.ejs index 8b83a8f..5240ae1 100755 --- a/views/home.ejs +++ b/views/home.ejs @@ -16,8 +16,9 @@ <table class="demo"> <tr> <td class="video" style="background-image:url(https://s3.amazonaws.com/luckyplop/6450f5b88c5c043a4551eff8902b1728f813bd66.jpg)"> + <span class="videoTitle">Create 3D Rooms</span><br> <span class="icon-ios7-play-outline"></span><br> - <span class="videoTitle">Welcome to VVALLS</span> + <span class="videoTitle">Watch video.</span> </td> </tr> </table> diff --git a/views/partials/edit-profile.ejs b/views/partials/edit-profile.ejs index 96e9da4..a39f856 100644 --- a/views/partials/edit-profile.ejs +++ b/views/partials/edit-profile.ejs @@ -61,8 +61,9 @@ </li> <li class="section_break"> - <h3>Change Password</h3> + <h3 class="link">Change Password</h3> </li> + <div class="hidden"> <li> <label class="description" for="profile_old_password">Old Password:</label> <div> @@ -81,7 +82,7 @@ <input id="profile_new_password2" class="element text medium" type="password" maxlength="255"> </div> </li> - + </div> <li class="buttons"> <input id="saveForm" class="button_text" type="submit" value="Submit" /> </li> diff --git a/views/partials/header.ejs b/views/partials/header.ejs index 6697aff..a48c5e1 100644 --- a/views/partials/header.ejs +++ b/views/partials/header.ejs @@ -14,7 +14,7 @@ <a href="/project" data-role="show-projects-modal" class="topLink">Projects</a> [[ if (profile && String(user._id) == String(profile._id)) { ]] - <a href="/profile" data-role="edit-profile-modal" class="topLink editProfile">Edit Profile <span class="icon-ios7-gear-outline"></span></a> + <a href="/profile" data-role="edit-profile-modal" class="topLink editProfile">Settings</a> [[ } else if (! profile) { ]] <a href="/profile" class="topLink">Profile</a> [[ } ]] diff --git a/views/partials/sign-in.ejs b/views/partials/sign-in.ejs index 8268b2a..98f0acc 100644 --- a/views/partials/sign-in.ejs +++ b/views/partials/sign-in.ejs @@ -6,7 +6,7 @@ <form id="signIn" method="post"> <input type="hidden" name="_csrf" value="[[- token ]]"> <a href="/auth/facebook" class="facebook"><b class="icon-social-facebook"></b><span>Sign in with Facebook</span></a> - <b class="signin-tagline">– or the ol' fashion way –</b> + <b class="signin-tagline">– or with your email –</b> <li> <label class="description" for="usernameInput">Username:</label> <div> @@ -39,7 +39,7 @@ <form id="signUp" method="post"> <input type="hidden" name="_csrf" value="[[- token ]]"> <a href="/auth/facebook" class="facebook"><b class="icon-social-facebook"></b><span>Sign up with Facebook</span></a> - <b class="signin-tagline">– or the ol' fashion way –</b> + <b class="signin-tagline">– or with your email –</b> <li> <label class="description" for="usernameInput">Username:</label> <div> diff --git a/views/profile.ejs b/views/profile.ejs index 8dd3c6d..ada3d52 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -45,7 +45,7 @@ [[ include projects/list-projects ]] - <a href="#" data-role="new-project-modal" class="viewMore">create project</a> + <a href="#" data-role="new-project-modal" class="viewMore btn">create project</a> [[ include partials/edit-profile ]] [[ include projects/layouts-modal ]] diff --git a/views/projects/list-projects.ejs b/views/projects/list-projects.ejs index c41ae07..2b6aa1e 100644 --- a/views/projects/list-projects.ejs +++ b/views/projects/list-projects.ejs @@ -2,8 +2,9 @@ <table class="projectList"> <tr> - + [[ projects.forEach(function(project, i) { ]] + [[ if (i % 4 == 1) { ]] </tr><tr> [[ } ]] |
