如何将JPG图像设置为PHP文件的背景? [关闭]

I want to set a JPG Image from the same folder as a background for this page. Can anyone tell me how this can be done for this page. I tried adding it to the start of the body but does not show up.

<?php 
 session_start();  
 if(isset($_SESSION["user"]))  
 {  
      header("location:home.php");  
 }  

 ?>
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>SUNRISE ADMIN</title>
  <link rel="stylesheet" href="css/style.css"> 
</head>

<body>

<h3><a href="../index.html">SUNRISE HOMEPAGE</a></h3></div>

 <div class="container">

 <h2>Sunrise Admin Login</h2>
      <div id="login">

        <form method="post">

          <fieldset class="clearfix">

            <p><span class="fontawesome-user"></span><input type="text"  name="user" value="Username" onBlur="if(this.value == '') this.value = 'Username'" onFocus="if(this.value == 'Username') this.value = ''" required></p> <!-- JS because of IE support; better: placeholder="Username" -->
            <p><span class="fontawesome-lock"></span><input type="password" name="pass"  value="Password" onBlur="if(this.value == '') this.value = 'Password'" onFocus="if(this.value == 'Password') this.value = ''" required></p> <!-- JS because of IE support; better: placeholder="Password" -->
            <p><input type="submit" name="sub"  value="Login"></p>

          </fieldset>

        </form>



      </div> <!-- end login -->

    </div>

</body>
</html>

Edit <body>

With: <body style="background-image:url('/location/to/image.jpg');">

or you can add it into your css stylsheet

body {
        background-image:url('https://image.ibb.co/iXFDPc/Schermafbeelding_2015_06_11_om_11_50_14_grande_1.png');    
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center; 
    }
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>

</body>
</html>

</div>