newCourse.ejs 572 B

12345678910111213
  1. <p>The following user created new course: <%= course.name %></p>
  2. <p>Name: <%= user.name %></p>
  3. <p>Email: <%= user.email %></p>
  4. <p>Course instructor listed as: <%= instructor.name %></p>
  5. <p>With email: <%= instructor.email %></p>
  6. <p>If you wish to remove this course manually, you can do so by using this link:</p>
  7. <p><a href="http://<%- serverHost %>/course/<%= course._id %>/delete">http://<%- serverHost %>/course/<%= course._id %>/delete</a></p>
  8. <p>This does not have any confirmation, if you are logged in, it will delete it. Only admins can deleted courses.</p>