I am struggling to add a video to my page. The default method of creating a path for it isn't working for me. I believe I need to place the path somewhere else, but I'm not sure where.
I have attempted to include the video in the same folder as my signup.hbs file, but it is still not displaying.
signup.hbs:
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<head>
<title></title>
</head>
<body>
<div class="site-style">
<div class="fullscreen-bg">
<div class="main-log">
<form id="signup" name="signup" method="post" action="/signup">
<label for="email">Email Address</label>
<input class="text" name="email" type="email" />
<label for="firstname">Firstname</label>
<input name="firstname" type="text" />
<label for="lastname">Lastname</label>
<input name="lastname" type="text" />
<label for="password">Password</label>
<input name="password" type="password" />
<input class="btn" type="submit" value="Sign Up" />
</form>
</div>
<video loop muted autoplay poster="video/plane.jpg" class="fullscreen-bg__video" width="100%" height="auto" autoplay="autoplay" loop="loop" preload="auto">
<source src="club_v.mp4" type="video/mp4">
</video>
</div>
</body>
</html>
The video_v.mp4 file can be found in the \app\views folder.
Despite my efforts, the video is still not appearing on my page.