<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>
    <p>Hi Agung,</p>
    <p>What you might want is a bespoke simple search that only
      specifies those four fields to be searched upon but this would
      only give one box rather than four.&nbsp; So you would then need to put
      something in the search page's preamble phrase to explain what can
      be searched upon.&nbsp; However, from your mockup it looks like this
      maybe a search you want embedded in your template.&nbsp; You can hack
      what would be an advanced search to create this.&nbsp; Here is a quick
      go I have had:</p>
    <p><font size="-2" face="Courier New, Courier, monospace">&lt;form
        method=&quot;get&quot; accept-charset=&quot;utf-8&quot;
        action=&quot;/cgi/search/advanced&quot;&gt;<br>
        &nbsp; &lt;input name=&quot;screen&quot; id=&quot;screen&quot; value=&quot;Search&quot;
        type=&quot;hidden&quot;/&gt;<br>
        &nbsp; &lt;input name=&quot;dataset&quot; id=&quot;dataset&quot; value=&quot;archive&quot;
        type=&quot;hidden&quot;/&gt;<br>
        &nbsp; &lt;div class=&quot;ep_table&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_row&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input name=&quot;title_merge&quot; type=&quot;hidden&quot;
        id=&quot;title_merge&quot; value=&quot;ALL&quot;/&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_multi_heading ep_table_cell&quot;&gt;&lt;span
        id=&quot;title_label&quot;&gt;&lt;span
        id=&quot;title_label&quot;&gt;Title&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_cell&quot;&gt;&lt;input name=&quot;title&quot;
        maxlength=&quot;256&quot; aria-labelledby=&quot;title_label&quot; type=&quot;text&quot;
        class=&quot;ep_form_text&quot; size=&quot;15&quot;/&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_row&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input name=&quot;creators_name_merge&quot; type=&quot;hidden&quot;
        id=&quot;creators_name_merge&quot; value=&quot;ALL&quot;/&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_multi_heading ep_table_cell&quot;&gt;&lt;span
        id=&quot;creators_name_label&quot;&gt;&lt;span
        id=&quot;creators_name_label&quot;&gt;Author
        Name&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_cell&quot;&gt;&lt;input
        name=&quot;creators_name&quot; maxlength=&quot;256&quot;
        aria-labelledby=&quot;creators_name_label&quot; type=&quot;text&quot;
        class=&quot;ep_form_text&quot; size=&quot;15&quot;/&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_row&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input name=&quot;keywords_merge&quot; type=&quot;hidden&quot;
        id=&quot;keywords_merge&quot; value=&quot;ALL&quot;/&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_multi_heading ep_table_cell&quot;&gt;&lt;span
        id=&quot;keywords_label&quot;&gt;&lt;span
        id=&quot;keywords_label&quot;&gt;Keyword&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_cell&quot;&gt;&lt;input name=&quot;keywords&quot;
        maxlength=&quot;256&quot; aria-labelledby=&quot;keywords_label&quot; type=&quot;text&quot;
        class=&quot;ep_form_text&quot; size=&quot;15&quot;/&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_row&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_multi_heading ep_table_cell&quot;&gt;&lt;span
        id=&quot;keywords_label&quot;&gt;&lt;span
        id=&quot;keywords_label&quot;&gt;Year&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_cell&quot;&gt;&lt;input name=&quot;keywords&quot;
        maxlength=&quot;256&quot; aria-labelledby=&quot;keywords_label&quot; type=&quot;text&quot;
        class=&quot;ep_form_text&quot; size=&quot;6&quot;/&gt;&lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;/div&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;div class=&quot;ep_table_row&quot;&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input name=&quot;satisfyall&quot; type=&quot;hidden&quot; id=&quot;satisfyall&quot;
        value=&quot;ALL&quot;/&gt;<br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input value=&quot;Search&quot; name=&quot;_action_search&quot;
        type=&quot;submit&quot; class=&quot;ep_form_action_button&quot; role=&quot;button&quot;/&gt;<br>
        &nbsp;&nbsp;&nbsp; &lt;/div&gt;<br>
        &nbsp; &lt;/div&gt;<br>
        &lt;/form&gt;</font><br>
    </p>
    <p>You will certainly need to do a bit of work to get it into a
      format like the mockup you included by altering the CSS but the
      search form itself should be sound and perform a search that
      requires all values entered to match the fields they have been
      entered against.&nbsp;&nbsp; As this is your own bespoke form you can modify
      it to add your own class and id attributes where needed to make it
      easier to modify your CSS to make the form appear like your
      mockup.<br>
    </p>
    <p>Regards</p>
    <p>David Newman<br>
    </p>
    <div class="moz-cite-prefix">On 02/06/2021 01:37, Ajunk Pracetio via
      Eprints-tech wrote:<br>
    </div>
    <blockquote type="cite" cite="mid:EMEW3|95049430d759b81b553dd4320342e5bbx511eO14eprints-tech-bounces|ecs.soton.ac.uk|CACOEPmOTQZ4dDoSAUo6xkskqYyHUd0=2aMm4uHqV0RezJx+hEA@mail.gmail.com">
      
      <div style="padding-bottom: 10px; padding-top: 5px;">
        <div style="padding:12px; border:1px solid #8D3970;
          background-color:#F7F9FA; color:#8D3970; font-size:14px;
          line-height:22px; font-family: Calibri, Arial, Helvetica,
          sans-serif;">
          <strong>CAUTION:</strong> This e-mail originated outside the
          University of Southampton.
        </div>
      </div>
      <div>
        <div dir="ltr">Hi,<br>
          <div><br>
          </div>
          <div>I'd like to ask about searching in EPrints. Is it
            possible to make a search form like advanced search but
            without options &quot;All of&quot; and &quot;Any of&quot;?</div>
          <div><br>
          </div>
          <div>The search form design is like this below</div>
          <div><img src="cid:part1.8B8FBDFA.6E445FE8@ecs.soton.ac.uk" alt="image.png" class="" width="542" height="70"><br>
          </div>
          <div><br>
          </div>
          <div>Maybe someone can help me with this problem?</div>
          <div><br>
          </div>
          <div>Thank you.</div>
          <div><br>
          </div>
          <div>Best regards,</div>
          <div>Agung Prasetyo W.</div>
        </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <pre class="moz-quote-pre" wrap="">*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C7c5458ebb3a64db98a2f08d9259dd5c5%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637582182085438373%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=YDbGediOlzmbHEqShb28q7QjeoQ7kNUXS6vJvHZ%2BhEg%3D&amp;reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="vDDe9JGzrUzbxoq/Hpq5pQrq5fnG1YQ8snKVSkMfOdH5r9A4bl2aIoB6/w9ETQ35c7RV543mvUJb8TkjmxyOyHv/pUA4cQMGyMSE3dpLvbTPO5bcJ96v170I6AD5rox7RhLbuWQfDWowqZME42VUFxu69lp46/AqdriU0LZN0+I=">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C7c5458ebb3a64db98a2f08d9259dd5c5%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637582182085438373%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=nltTK24fvp6g4pTrKFV3CO%2FFYeAHlhlYJJ7cS20sZUE%3D&amp;reserved=0" originalSrc="http://wiki.eprints.org/" shash="dcf4L3nvtkiQw1MFLoVHBpaQ1JmbwpaBdXV9DuYUjvWonfoEY9hkgtiU12vnK8oE+Lo35neg7wzmLKX0kiMn7/aJQLwSvCXsEvVRkfVWmCICnirz18IedGi6rYOURZx85qX4i59rB9I0G9ZNbxa/jsOeSlEhQ08ZtUNJCMe9gFg=">http://wiki.eprints.org/</a></pre>
    </blockquote>
  <div id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br>
<table style="border-top: 1px solid #D3D4DE;">
        <tr>
        <td style="width: 55px; padding-top: 13px;"><a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.avg.com%2Femail-signature%3Futm_medium%3Demail%26utm_source%3Dlink%26utm_campaign%3Dsig-email%26utm_content%3Demailclient&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C7c5458ebb3a64db98a2f08d9259dd5c5%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637582182085448327%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=L8%2B7ZBShpC0YMIlThuuYVCiWBJFFPLO0gmqZbzg%2FsE8%3D&amp;reserved=0" originalSrc="http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" shash="zM3qeLMxp/9I7lwruQAg0dQ49LIHoB8Dl+DlsQgzUvX8xiVjSJEYm59piHGM+5CcZbZWok4qNVODM22/I8fvQhTUNk4VRnJof394WtKMOjMqjB4R/ESTNRYIpxmX64/K4FbmWh9BQeCfBfhCzOYB178TL2G2d+sRvWcqWIQx02o=" target="_blank"><img src="https://ipmcdn.avast.com/images/icons/icon-envelope-tick-green-avg-v1.png" alt="" width="46" height="29" style="width: 46px; height: 29px;"></a></td>
                <td style="width: 470px; padding-top: 12px; color: #41424e; font-size: 13px; font-family: Arial, Helvetica, sans-serif; line-height: 18px;">Virus-free. <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.avg.com%2Femail-signature%3Futm_medium%3Demail%26utm_source%3Dlink%26utm_campaign%3Dsig-email%26utm_content%3Demailclient&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C7c5458ebb3a64db98a2f08d9259dd5c5%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637582182085448327%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=L8%2B7ZBShpC0YMIlThuuYVCiWBJFFPLO0gmqZbzg%2FsE8%3D&amp;reserved=0" originalSrc="http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" shash="zM3qeLMxp/9I7lwruQAg0dQ49LIHoB8Dl+DlsQgzUvX8xiVjSJEYm59piHGM+5CcZbZWok4qNVODM22/I8fvQhTUNk4VRnJof394WtKMOjMqjB4R/ESTNRYIpxmX64/K4FbmWh9BQeCfBfhCzOYB178TL2G2d+sRvWcqWIQx02o=" target="_blank" style="color: #4453ea;">www.avg.com</a>
                </td>
        </tr>
</table><a href="#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1" height="1"> </a></div></body>
</html>